Skip to content

Commit

Permalink
dl_report template: remove MS from issue check table; arrange summary…
Browse files Browse the repository at this point in the history
… tables by descending
  • Loading branch information
lawalter committed Sep 21, 2023
1 parent 15090be commit 78f4f16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion inst/templates/dl_report.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1484,6 +1484,7 @@ if(!is.null(identicalbags)) {
DT::datatable(
identicalbags |>
dplyr::select(-dl_state) |>
dplyr::arrange(dplyr::desc(n)) |>
dplyr::rename(
`Source file` = source_file,
`Species 1` = spp1,
Expand Down Expand Up @@ -1536,6 +1537,7 @@ if(!is.null(vrep_all)) {
DT::datatable(
vrep_all |>
dplyr::select(-dl_state) |>
dplyr::arrange(dplyr::desc(v_repeated)) |>
dplyr::rename(
`Source file` = source_file,
`Species` = spp,
Expand Down Expand Up @@ -1607,7 +1609,7 @@ if(nrow(dplyr::filter(issue_assignments, decision != "nochange") |> dplyr::filte
bad_issue_table <-
issue_assignments |>
dplyr::filter(decision != "nochange") |>
dplyr::filter(!(dl_state %in% migbirdHIP:::states_twoseason & decision == "copy")) |>
dplyr::filter(!(dl_state %in% c(migbirdHIP:::states_twoseason, "MS") & decision == "copy")) |>
dplyr::select(dl_state, source_file, issue_date, registration_yr) |>
dplyr::left_join(
migbirdHIP:::licenses_ref |>
Expand Down

0 comments on commit 78f4f16

Please sign in to comment.