Skip to content

Commit

Permalink
Merge pull request #84 from sarahkelso/qc_flags_SK
Browse files Browse the repository at this point in the history
Moved P flag summary
  • Loading branch information
RobLBaker authored Mar 21, 2024
2 parents af15dd1 + 940b3e3 commit 37ea698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/summarize_qc_flags.R
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ get_custom_flags <- function(directory = here::here(),
dplyr::group_by(filename) %>%
dplyr::summarize("A" = sum(A_flag),
"AE" = sum(AE_flag),
"P" = sum(P_flag),
"R" = sum(R_flag),
"P" = sum(P_flag),
"% Accepted" = mean(RRU)) %>%
dplyr::rename("File Name" = filename) %>%
dplyr::mutate(`% Accepted` = paste0(formatC(100 * `% Accepted`,
Expand Down

0 comments on commit 37ea698

Please sign in to comment.