Skip to content

Commit f905c19

Browse files
author
Karin Schork
committed
add export of a complete xlsx file in QC workflow
1 parent a2739d9 commit f905c19

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

R/workflow_QC.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ workflow_QC <- function(data_path,
141141
write.csv(x = prepared_data$D, file = paste0(output_path, "/D_norm_wide", suffix, ".csv"), row.names = FALSE)
142142
write.csv(x = prepared_data$D_long, file = paste0(output_path, "/D_norm_long", suffix, ".csv"), row.names = FALSE)
143143

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

145148
#### Calculate Valid Value Plot ####
146149

0 commit comments

Comments
 (0)