comparison export_to_metexp_tabular.xml @ 21:19d8fd10248e

* Added interface to METEXP data store, including tool to fire queries in batch mode * Improved quantification output files of MsClust, a.o. sorting mass list based on intensity (last two columns of quantification files) * Added Molecular Mass calculation method
author pieter.lukasse@wur.nl
date Wed, 05 Mar 2014 17:20:11 +0100
parents
children 637830ac8bcd
comparison
equal deleted inserted replaced
20:24fb75fedee0 21:19d8fd10248e
1 <tool id="export_to_metexp_tabular"
2 name="METEXP - Tabular file"
3 version="0.1.0">
4 <description>Create tabular file for loading into METabolomics EXPlorer database</description>
5 <command interpreter="python">
6 export_to_metexp_tabular.py $rankfilter_and_caslookup_combi $msclust_quant_file $output_result
7 $organism $tissue $experiment_name $user_name $column_type
8 </command>
9 <inputs>
10 <param format="tabular" name="rankfilter_and_caslookup_combi" type="data" label="RIQC-Combine RankFilter and CasLookup output"
11 help="Select the (multi) output file from the 'Combine RankFilter and CasLookup' tool"/>
12 <param format="tabular" name="msclust_quant_file" type="data" label="MusClust-quantification file output"
13 help="Select the output file from MsClust (centrotype, mic or sim) which also contain respective spectrum details"/>
14
15
16 <param name="organism" type="text" size="80"
17 label="Organism(s) info"
18 help="Metadata information to accompany the results when stored in MetExp DB." />
19 <param name="tissue" type="text" size="80"
20 label="Tissue(s) info"
21 help="Metadata information to accompany the results when stored in MetExp DB." />
22
23 <param name="experiment_name" type="text" size="80"
24 label="Experiment name/code"
25 help="Name or code to store the results under. This can help you find the results back in MetExpDB." />
26
27 <param name="user_name" type="text" size="80"
28 label="User name"
29 help="User name or code to store the results under. This can help you find the results back in MetExpDB." />
30
31 <param name="column_type" type="text" size="80"
32 label="Column type"
33 help="Column type to report with the results. This can help you find the results back in MetExpDB." />
34
35 </inputs>
36 <outputs>
37 <data format="tabular" label="${tool.name} on ${on_string}" name="output_result" />
38 </outputs>
39 <help>
40 .. class:: infomark
41
42 Tool to combine output from the tools RankFilter, CasLookup and MsClust
43 into a tabular file that can be uploaded to the METabolomics EXPlorer (MetExp) database.
44
45 RankFilter, CasLookup are already combined by 'RIQC-Combine RankFilter and CasLookup' tool so here we will use
46 this result.
47
48 **Notes**
49
50 Extra calculations performed:
51 - The columns MM and MW are also added here and are derived from the column FORMULA found in RankFilter, CasLookup combined result.
52
53 So in total here we merge 2 files and calculate one new column.
54
55
56 </help>
57 </tool>