Closed llrs closed 6 months ago
Add helper for CNAG but for all projects:
file_EPIVIRCO <- function(x, path = "/home/data/") { stopifnot(is.integer(x)) if (nchar(x) < 2L) { x <- paste0("0", x) } paste0(path, "XXXX_", x, "/XXXX_", x, ".xls") } stats_EPIVIRCO <- function(x, path = "/home/data/") { stopifnot(is.integer(x)) if (nchar(x) < 2L) { x <- paste0("0", x) } paste0(path, "XXXX_", x, "/XXXX_", x, "_Sample_Stats.xls") }
Functions created: llrs_cnag_stats_file and llrs_cnag_project_file
llrs_cnag_stats_file
llrs_cnag_project_file
Add helper for CNAG but for all projects: