Mercurial > repos > lecorguille > xcms_xcmsset
view xcms_xcmsSet.r @ 34:efd23113d5f4 draft
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 49203f8a5271fa5e6bb889e907df71ebf7757309
author | lecorguille |
---|---|
date | Thu, 08 Mar 2018 05:51:32 -0500 |
parents | c363b9f1caef |
children | 7f636ad1162b |
line wrap: on
line source
#!/usr/bin/env Rscript # ----- LOG FILE ----- log_file <- file("log.txt", open="wt") sink(log_file) sink(log_file, type = "output") # ----- 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("xcms","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=F, quote=F, sep='\t') cat("\n\n") # ----- PROCESSING INFILE ----- cat("\tARGUMENTS PROCESSING INFO\n") #saving the commun parameters BPPARAM <- MulticoreParam(1) if (!is.null(args$BPPARAM)){ BPPARAM <- MulticoreParam(args$BPPARAM); args$BPPARAM <- NULL } register(BPPARAM) #saving the specific parameters if (!is.null(args$filterAcquisitionNum)){ filterAcquisitionNumParam <- args$filterAcquisitionNum; args$filterAcquisitionNum <- NULL } if (!is.null(args$filterRt)){ filterRtParam <- args$filterRt; args$filterRt <- NULL } if (!is.null(args$filterMz)){ filterMzParam <- args$filterMz; args$filterMz <- NULL } method <- args$method; args$method <- NULL cat("\n\n") # ----- INFILE PROCESSING ----- cat("\tINFILE PROCESSING INFO\n") # Handle infiles if (!exists("singlefile")) singlefile <- NULL if (!exists("zipfile")) zipfile <- NULL rawFilePath <- getRawfilePathFromArguments(singlefile, zipfile, args) zipfile <- rawFilePath$zipfile singlefile <- rawFilePath$singlefile args <- rawFilePath$args directory <- retrieveRawfileInTheWorkingDirectory(singlefile, zipfile) # Check some character issues md5sumList <- list("origin" = getMd5sum(directory)) checkXmlStructure(directory) checkFilesCompatibilityWithXcms(directory) cat("\n\n") # ----- MAIN PROCESSING INFO ----- cat("\tMAIN PROCESSING INFO\n") cat("\t\tCOMPUTE\n") ## Get the full path to the files files <- getMSFiles(directory) cat("\t\t\tCreate a phenodata data.frame\n") s_groups <- sapply(files, function(x) tail(unlist(strsplit(dirname(x),"/")), n=1)) s_name <- tools::file_path_sans_ext(basename(files)) pd <- data.frame(sample_name=s_name, sample_group=s_groups, stringsAsFactors=FALSE) print(pd) cat("\t\t\tLoad Raw Data\n") raw_data <- readMSData(files=files, pdata = new("NAnnotatedDataFrame", pd), mode="onDisk") cat("\t\t\tApply filter[s] (if asked)\n") if (exists("filterAcquisitionNumParam")) { raw_data <- filterAcquisitionNum(raw_data, filterAcquisitionNumParam[1]:filterAcquisitionNumParam[2]) } if (exists("filterRtParam")) { raw_data <- filterRt(raw_data, filterRtParam) } if (exists("filterMzParam")) { raw_data <- filterMz(raw_data, filterMzParam) } cat("\t\t\tChromatographic peak detection\n") findChromPeaksParam <- do.call(paste0(method,"Param"), args) print(findChromPeaksParam) xdata <- findChromPeaks(raw_data, param=findChromPeaksParam) # Check if there are no peaks if (nrow(chromPeaks(xdata)) == 0) stop("No peaks were detected. You should review your settings") # Transform the files absolute pathways into relative pathways xdata@processingData@files <- sub(paste(getwd(), "/", sep="") , "", xdata@processingData@files) # Create a sampleMetada file sampleNamesList <- getSampleMetadata(xdata=xdata, sampleMetadataOutput="sampleMetadata.tsv") cat("\n\n") # ----- EXPORT ----- cat("\tXCMSnExp OBJECT INFO\n") print(xdata) cat("\n\n") cat("\txcmsSet OBJECT INFO\n") # Get the legacy xcmsSet object xset <- getxcmsSetObject(xdata) print(xset) cat("\n\n") #saving R data in .Rdata file to save the variables used in the present tool objects2save <- c("xdata", "zipfile", "singlefile", "md5sumList", "sampleNamesList") save(list=objects2save[objects2save %in% ls()], file="xcmsSet.RData") cat("\tDONE\n")