Skip to content

Commit

Permalink
add export of a complete xlsx file in QC workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Karin Schork committed Sep 9, 2024
1 parent a2739d9 commit f905c19
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions R/workflow_QC.R
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ workflow_QC <- function(data_path,
write.csv(x = prepared_data$D, file = paste0(output_path, "/D_norm_wide", suffix, ".csv"), row.names = FALSE)
write.csv(x = prepared_data$D_long, file = paste0(output_path, "/D_norm_long", suffix, ".csv"), row.names = FALSE)

openxlsx::write.xlsx(x = cbind(prepared_data$ID, prepared_data$D), file = paste0(output_path, "/D_norm_ID_", suffix, ".xlsx"),
row.names = FALSE, overwrite = TRUE, keepNA = TRUE)


#### Calculate Valid Value Plot ####

Expand Down

0 comments on commit f905c19

Please sign in to comment.