Mercurial > repos > lecorguille > xcms_fillpeaks
annotate xcms_fillpeaks.r @ 38:a3e80894efd3 draft
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e131bacd37bfaf2c4132fd214c81db9b8a9df513
| author | lecorguille | 
|---|---|
| date | Mon, 17 Sep 2018 08:46:47 -0400 | 
| parents | e67cbb96d9e9 | 
| children | a98dbb09fed1 | 
| rev | line source | 
|---|---|
| 31 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 1 #!/usr/bin/env Rscript | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 2 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 3 # ----- LOG FILE ----- | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 4 log_file=file("log.txt", open = "wt") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 5 sink(log_file) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 6 sink(log_file, type = "output") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 7 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 8 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 9 # ----- PACKAGE ----- | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 10 cat("\tSESSION INFO\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 11 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 12 #Import the different functions | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 13 source_local <- function(fname){ argv <- commandArgs(trailingOnly=FALSE); base_dir <- dirname(substring(argv[grep("--file=", argv)], 8)); source(paste(base_dir, fname, sep="/")) } | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 14 source_local("lib.r") | 
| 38 
a3e80894efd3
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e131bacd37bfaf2c4132fd214c81db9b8a9df513
 lecorguille parents: 
35diff
changeset | 15 source_local("lib-xcms3.x.x.r") | 
| 31 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 16 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 17 pkgs <- c("xcms","batch") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 18 loadAndDisplayPackages(pkgs) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 19 cat("\n\n"); | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 20 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 21 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 22 # ----- ARGUMENTS ----- | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 23 cat("\tARGUMENTS INFO\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 24 args = parseCommandArgs(evaluate=FALSE) #interpretation of arguments given in command line as an R list of objects | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 25 write.table(as.matrix(args), col.names=F, quote=F, sep='\t') | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 26 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 27 cat("\n\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 28 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 29 # ----- PROCESSING INFILE ----- | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 30 cat("\tARGUMENTS PROCESSING INFO\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 31 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 32 #saving the specific parameters | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 33 method <- "FillChromPeaks" | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 34 | 
| 34 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 35 if (!is.null(args$convertRTMinute)) convertRTMinute <- args$convertRTMinute | 
| 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 36 if (!is.null(args$numDigitsMZ)) numDigitsMZ <- args$numDigitsMZ | 
| 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 37 if (!is.null(args$numDigitsRT)) numDigitsRT <- args$numDigitsRT | 
| 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 38 if (!is.null(args$intval)) intval <- args$intval | 
| 38 
a3e80894efd3
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e131bacd37bfaf2c4132fd214c81db9b8a9df513
 lecorguille parents: 
35diff
changeset | 39 if (!is.null(args$naTOzero)) naTOzero <- args$naTOzero | 
| 31 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 40 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 41 cat("\n\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 42 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 43 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 44 # ----- ARGUMENTS PROCESSING ----- | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 45 cat("\tINFILE PROCESSING INFO\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 46 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 47 #image is an .RData file necessary to use xset variable given by previous tools | 
| 34 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 48 load(args$image) | 
| 31 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 49 if (!exists("xdata")) stop("\n\nERROR: The RData doesn't contain any object called 'xdata'. This RData should have been created by an old version of XMCS 2.*") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 50 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 51 #Verification of a group step before doing the fillpeaks job. | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 52 if (!hasFeatures(xdata)) stop("You must always do a group step after a retcor. Otherwise it won't work for the fillpeaks step") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 53 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 54 # Handle infiles | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 55 if (!exists("singlefile")) singlefile <- NULL | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 56 if (!exists("zipfile")) zipfile <- NULL | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 57 rawFilePath <- getRawfilePathFromArguments(singlefile, zipfile, args) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 58 zipfile <- rawFilePath$zipfile | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 59 singlefile <- rawFilePath$singlefile | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 60 directory <- retrieveRawfileInTheWorkingDirectory(singlefile, zipfile) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 61 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 62 # Check some character issues | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 63 md5sumList <- list("origin" = getMd5sum(directory)) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 64 checkXmlStructure(directory) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 65 checkFilesCompatibilityWithXcms(directory) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 66 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 67 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 68 cat("\n\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 69 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 70 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 71 # ----- MAIN PROCESSING INFO ----- | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 72 cat("\tMAIN PROCESSING INFO\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 73 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 74 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 75 cat("\t\tCOMPUTE\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 76 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 77 cat("\t\t\tFilling missing peaks using default settings\n") | 
| 34 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 78 # clear the arguement list to remove unexpected key/value as singlefile_galaxyPath or method ... | 
| 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 79 args <- args[names(args) %in% slotNames(do.call(paste0(method,"Param"), list()))] | 
| 
d8bac1291473
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a
 lecorguille parents: 
31diff
changeset | 80 | 
| 31 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 81 fillChromPeaksParam <- do.call(paste0(method,"Param"), args) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 82 print(fillChromPeaksParam) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 83 xdata <- fillChromPeaks(xdata, param=fillChromPeaksParam) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 84 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 85 if (exists("intval")) { | 
| 38 
a3e80894efd3
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e131bacd37bfaf2c4132fd214c81db9b8a9df513
 lecorguille parents: 
35diff
changeset | 86 getPeaklistW4M(xdata, intval, convertRTMinute, numDigitsMZ, numDigitsRT, naTOzero, "variableMetadata.tsv", "dataMatrix.tsv") | 
| 31 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 87 } | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 88 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 89 cat("\n\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 90 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 91 # ----- EXPORT ----- | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 92 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 93 cat("\tXCMSnExp OBJECT INFO\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 94 print(xdata) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 95 cat("\n\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 96 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 97 cat("\txcmsSet OBJECT INFO\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 98 # Get the legacy xcmsSet object | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 99 xset <- getxcmsSetObject(xdata) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 100 print(xset) | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 101 cat("\n\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 102 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 103 #saving R data in .Rdata file to save the variables used in the present tool | 
| 35 
e67cbb96d9e9
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 5e066c50d2e4ac6d5796b53331cbd3198ab8c4f9-dirty
 lecorguille parents: 
34diff
changeset | 104 objects2save = c("xdata","zipfile","singlefile","md5sumList","sampleNamesList", "chromTIC", "chromBPI", "chromTIC_adjusted", "chromBPI_adjusted") | 
| 31 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 105 save(list=objects2save[objects2save %in% ls()], file="fillpeaks.RData") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 106 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 107 cat("\n\n") | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 108 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 109 | 
| 
8fd5b5afa24d
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit e384d6dd5f410799ec211f73bca0b5d5d7bc651e
 lecorguille parents: diff
changeset | 110 cat("\tDONE\n") | 
