Mercurial > repos > lecorguille > camera_annotate
view CAMERA_annotateDiffreport.r @ 26:3d63a762954a draft default tip
planemo upload commit a923a432239a1f2ffee2dae1281fe2d8f41bac38
author | workflow4metabolomics |
---|---|
date | Mon, 30 Sep 2024 12:22:28 +0000 |
parents | 4b9ab71be05e |
children |
line wrap: on
line source
#!/usr/bin/env Rscript # ----- PACKAGE ----- cat("\tSESSION INFO\n") # Import the different functions source_local <- function(fname) { argv <- commandArgs(trailingOnly = FALSE) base_dir <- dirname(substring(argv[grep("--file=", argv)], 8)) source(paste(base_dir, fname, sep = "/")) } source_local("lib.r") pkgs <- c("CAMERA", "multtest", "batch") loadAndDisplayPackages(pkgs) cat("\n\n") # ----- ARGUMENTS ----- cat("\tARGUMENTS INFO\n") args <- parseCommandArgs(evaluate = FALSE) # interpretation of arguments given in command line as an R list of objects write.table(as.matrix(args), col.names = FALSE, quote = FALSE, sep = "\t") cat("\n\n") # ----- PROCESSING INFILE ----- cat("\tINFILE PROCESSING INFO\n") # image is an .RData file necessary to use xset variable given by previous tools load(args$image) args$image <- NULL cat("\n\n") # ----- ARGUMENTS PROCESSING ----- cat("\tARGUMENTS PROCESSING INFO\n") # Save arguments to generate a report if (!exists("listOFlistArguments")) listOFlistArguments <- list() listOFlistArguments[[format(Sys.time(), "%y%m%d-%H:%M:%S_annotatediff")]] <- args # We unzip automatically the chromatograms from the zip files. if (!exists("zipfile")) zipfile <- NULL if (!exists("singlefile")) singlefile <- NULL rawFilePath <- getRawfilePathFromArguments(singlefile, zipfile, args) zipfile <- rawFilePath$zipfile singlefile <- rawFilePath$singlefile args <- rawFilePath$args directory <- retrieveRawfileInTheWorkingDir(singlefile, zipfile) # Because so far CAMERA isn't compatible with the new XCMSnExp object if (exists("xdata")) { xset <- getxcmsSetObject(xdata) } cat("\n\n") # ----- PROCESSING INFO ----- cat("\tMAIN PROCESSING INFO\n") results_list <- annotatediff(xset = xset, args = args, variableMetadataOutput = "variableMetadata.tsv") xa <- results_list$xa diffrep <- results_list$diffrep variableMetadata <- results_list$variableMetadata cat("\n\n") # ----- EXPORT ----- cat("\tXSET OBJECT INFO\n") print(xa) cat("\n\n") # saving R data in .Rdata file to save the variables used in the present tool objects2save <- c("xa", "variableMetadata", "diffrep", "cAnnot", "listOFlistArguments", "zipfile", "singlefile") save(list = objects2save[objects2save %in% ls()], file = "annotatediff.RData") cat("\n\n") cat("\tDONE\n")