Mercurial > repos > lecorguille > xcms_merge
annotate xcms_merge.xml @ 6:5c7a7484dc51 draft
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
author | lecorguille |
---|---|
date | Tue, 13 Feb 2018 04:42:48 -0500 |
parents | 945652915244 |
children | dca722aecb67 |
rev | line source |
---|---|
6
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
1 <tool id="xcms_merge" name="xcms.xcmsSet Merger" version="1.1.0"> |
0
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
2 <description>Merge xcms.xcmsSet xset in one to be used by group</description> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
3 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
4 <macros> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
5 <import>macros.xml</import> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
6 </macros> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
7 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
8 <expand macro="requirements_light"/> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
9 <expand macro="stdio"/> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
10 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
11 <command><![CDATA[ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
12 Rscript $script_file |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
13 ]]></command> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
14 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
15 <configfiles> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
16 <configfile name="script_file"><![CDATA[ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
17 suppressPackageStartupMessages(library(xcms, quietly=TRUE)) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
18 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
19 images=c( |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
20 "${"\",\"".join(map(str, $images))}" |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
21 ) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
22 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
23 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
24 cat("\tXSET MERGING...\n") |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
25 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
26 for(image in images) { |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
27 load(image) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
28 cat(sampleNamesList\$sampleNamesOrigin,"\n") |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
29 if (!exists("xset_merged")) { |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
30 xset_merged=xset |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
31 singlefile_merged=singlefile |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
32 listOFlistArguments_merged=listOFlistArguments |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
33 md5sumList_merged=md5sumList |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
34 sampleNamesList_merged=sampleNamesList |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
35 } else { |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
36 xset_merged=c(xset_merged,xset) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
37 singlefile_merged=c(singlefile_merged,singlefile) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
38 listOFlistArguments_merged=c(listOFlistArguments_merged,listOFlistArguments) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
39 md5sumList_merged\$origin=rbind(md5sumList_merged\$origin,md5sumList\$origin) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
40 sampleNamesList_merged\$sampleNamesOrigin=c(sampleNamesList_merged\$sampleNamesOrigin,sampleNamesList\$sampleNamesOrigin) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
41 sampleNamesList_merged\$sampleNamesMakeNames=c(sampleNamesList_merged\$sampleNamesMakeNames,sampleNamesList\$sampleNamesMakeNames) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
42 } |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
43 } |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
44 rm(image) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
45 xset=xset_merged; rm(xset_merged) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
46 singlefile=singlefile_merged; rm(singlefile_merged) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
47 listOFlistArguments=listOFlistArguments_merged; rm(listOFlistArguments_merged) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
48 md5sumList=md5sumList_merged; rm(md5sumList_merged) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
49 sampleNamesList=sampleNamesList_merged; rm(sampleNamesList_merged) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
50 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
51 #if str($sampleMetadata) != 'None': |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
52 cat("\tXSET PHENODATA SETTING...\n") |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
53 sampleMetadata=read.table("$sampleMetadata", h=F, sep=";", stringsAsFactors=F) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
54 if (ncol(sampleMetadata) < 2) sampleMetadata=read.table("$sampleMetadata", h=F, sep="\t", stringsAsFactors=F) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
55 if (ncol(sampleMetadata) < 2) sampleMetadata=read.table("$sampleMetadata", h=F, sep=",", stringsAsFactors=F) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
56 if (ncol(sampleMetadata) < 2) { |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
57 error_message="Your sampleMetadata file seems not well formatted. The column separators accepted are ; , and tabulation" |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
58 print(error_message) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
59 stop(error_message) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
60 } |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
61 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
62 sampclass(xset)=sampleMetadata\$V2[match(rownames(xset@phenoData),sampleMetadata\$V1)] |
6
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
63 |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
64 if (any(is.na(sampclass(xset)))) { |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
65 sample_missing <- rownames(phenoData(xset))[is.na(sampclass(xset))] |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
66 error_message <- paste("Those samples are missing in your sampleMetadata:", paste(sample_missing, collapse=" ")) |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
67 print(error_message) |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
68 stop(error_message) |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
69 } |
0
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
70 #end if |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
71 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
72 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
73 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
74 cat("\tXSET OBJECT INFO\n") |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
75 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
76 print(xset@phenoData) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
77 print(xset) |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
78 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
79 cat("\tSAVE RData\n") |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
80 save.image("$xsetRData") |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
81 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
82 ]]></configfile> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
83 </configfiles> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
84 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
85 <inputs> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
86 <param name="images" type="data" format="rdata.xcms.raw,rdata" label="xset RData / xcms.xcmsSet file" help="output file from another xcms.xcmsSet" multiple="true" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
87 <param name="sampleMetadata" label="Sample metadata file " format="tabular" type="data" optional="true" help="must contain at least one column with the sample id and one column with the sample class"/> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
88 </inputs> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
89 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
90 <outputs> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
91 <data name="xsetRData" format="rdata.xcms.raw" label="xset.merged.RData" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
92 </outputs> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
93 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
94 <tests> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
95 <test> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
96 <param name="images" value="ko15-xset.RData,ko16-xset.RData,wt15-xset.RData,wt16-xset.RData" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
97 <assert_stdout> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
98 <has_text text="object with 4 samples" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
99 <has_text text="Time range: 2506.1-4477.9 seconds (41.8-74.6 minutes)" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
100 <has_text text="Mass range: 200.1-600 m/z" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
101 <has_text text="Peaks: 9251 (about 2313 per sample)" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
102 <has_text text="Peak Groups: 0" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
103 <has_text text="Sample classes: ." /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
104 </assert_stdout> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
105 </test> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
106 <test> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
107 <param name="images" value="ko15-xset.RData,ko16-xset.RData,wt15-xset.RData,wt16-xset.RData" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
108 <param name="sampleMetadata" value="sampleMetadata.tab" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
109 <assert_stdout> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
110 <has_text text="ko15 KO" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
111 <has_text text="ko16 KO" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
112 <has_text text="wt15 WT" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
113 <has_text text="wt16 WT" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
114 <has_text text="object with 4 samples" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
115 <has_text text="Time range: 2506.1-4477.9 seconds (41.8-74.6 minutes)" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
116 <has_text text="Mass range: 200.1-600 m/z" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
117 <has_text text="Peaks: 9251 (about 2313 per sample)" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
118 <has_text text="Peak Groups: 0" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
119 <has_text text="Sample classes: KO, WT" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
120 </assert_stdout> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
121 </test> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
122 <test> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
123 <param name="images" value="MM8-xset.RData,MM14-xset.RData" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
124 <assert_stdout> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
125 <has_text text="object with 2 samples" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
126 <has_text text="Time range: 19.7-307.3 seconds (0.3-5.1 minutes)" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
127 <has_text text="Mass range: 117.0357-936.7059 m/z" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
128 <has_text text="Peaks: 236 (about 118 per sample)" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
129 <has_text text="Peak Groups: 0" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
130 <has_text text="Sample classes: ." /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
131 </assert_stdout> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
132 </test> |
6
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
133 <test expect_failure="True"> |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
134 <param name="images" value="ko15-xset.RData,ko16-xset.RData,wt15-xset.RData,wt16-xset.RData" /> |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
135 <param name="sampleMetadata" value="sampleMetadata_missing.tab" /> |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
136 <expand macro="test_file_load_single"/> |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
137 <assert_stderr> |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
138 <has_text text="Those samples are missing in your sampleMetadata: ko16" /> |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
139 </assert_stderr> |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
140 </test> |
0
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
141 </tests> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
142 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
143 <help><![CDATA[ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
144 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
145 @HELP_AUTHORS@ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
146 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
147 =================== |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
148 Xcms.xcmsSet Merger |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
149 =================== |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
150 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
151 ----------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
152 Description |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
153 ----------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
154 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
155 This tool will allow you to run one xcms.xcmsSet process per sample in parallel and then to merge all RData images in one. |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
156 The result is then suitable for xcms.group. |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
157 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
158 You can provide a sampleMetadata table to attribute phenotypic value to your samples. |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
159 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
160 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
161 ----------------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
162 Workflow position |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
163 ----------------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
164 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
165 **Upstream tools** |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
166 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
167 ========================= ================= =================== ========== |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
168 Name output file format parameter |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
169 ========================= ================= =================== ========== |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
170 xcms.xcmsSet xset.RData rdata.xcms.raw RData file |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
171 ------------------------- ----------------- ------------------- ---------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
172 xcms.xcmsSet xset.RData rdata.xcms.raw RData file |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
173 ------------------------- ----------------- ------------------- ---------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
174 xcms.xcmsSet xset.RData rdata.xcms.raw RData file |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
175 ------------------------- ----------------- ------------------- ---------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
176 ... ... ... ... |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
177 ========================= ================= =================== ========== |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
178 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
179 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
180 **Downstream tools** |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
181 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
182 +---------------------------+--------------------+-----------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
183 | Name | Output file | Format | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
184 +===========================+====================+=================+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
185 |xcms.group | xset.RData | rdata.xcms.raw | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
186 +---------------------------+--------------------+-----------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
187 |
4
945652915244
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 392e432529877680e80a7b338e20d69a42e53767
lecorguille
parents:
0
diff
changeset
|
188 .. image:: xcms_merge_workflow.png |
0
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
189 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
190 ----------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
191 Input files |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
192 ----------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
193 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
194 +---------------------------+-----------------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
195 | Parameter : num + label | Format | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
196 +===========================+=======================+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
197 | 1 : RData file | rdata.xcms.raw | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
198 +---------------------------+-----------------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
199 | 2 : RData file | rdata.xcms.raw | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
200 +---------------------------+-----------------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
201 | N : RData file | rdata.xcms.raw | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
202 +---------------------------+-----------------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
203 | Optional : sampleMetadata | tsv or csv | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
204 +---------------------------+-----------------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
205 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
206 Example of a sampleMetadata: |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
207 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
208 +---------------------------+------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
209 |HU_neg_028 | bio | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
210 +---------------------------+------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
211 |HU_neg_034 | bio | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
212 +---------------------------+------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
213 |Blanc04 | blank | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
214 +---------------------------+------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
215 |Blanc06 | blank | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
216 +---------------------------+------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
217 |Blanc09 | blank | |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
218 +---------------------------+------------+ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
219 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
220 ------------ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
221 Output files |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
222 ------------ |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
223 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
224 xset.merged.RData: rdata.xcms.raw format |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
225 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
226 | Rdata file that is necessary in the next step of the workflow "xcms.group". |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
227 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
228 --------------------------------------------------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
229 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
230 Changelog/News |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
231 -------------- |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
232 |
6
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
233 **Version 1.0.1 - 13/02/2017** |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
234 |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
235 - IMPROVMENT: the tool will now raise an error if a sample isn't describe in the sampleMetadata file |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
236 |
5c7a7484dc51
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 73791d74546087b2a872d9279df960f5bc207298
lecorguille
parents:
4
diff
changeset
|
237 |
0
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
238 **Version 1.0.0 - 03/02/2017** |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
239 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
240 - NEW: a new tool to merge individual xcmsSet outputs to be used by xcms.group |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
241 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
242 ]]></help> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
243 |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
244 <expand macro="citation" /> |
9063eaae5112
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 481448087f0e09c131b24f7d552db69f3552d371-dirty
lecorguille
parents:
diff
changeset
|
245 </tool> |