0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="OpenSwathChromatogramExtractor" name="OpenSwathChromatogramExtractor" version="1.12.0">
|
|
3 <description>Extract chromatograms (XIC) from a MS2 map file.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">OpenSwathChromatogramExtractor</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>OpenSwathChromatogramExtractor
|
|
11
|
|
12 -in ${param_in}
|
|
13 -tr ${param_tr}
|
|
14 -rt_norm ${param_rt_norm}
|
|
15 -out ${param_out}
|
|
16 -min_upper_edge_dist ${param_min_upper_edge_dist}
|
|
17 -mz_window ${param_mz_window}
|
|
18 -rt_window ${param_rt_window}
|
|
19 ${param_is_swath}
|
|
20 ${param_ppm}
|
|
21 ${param_extract_MS1}
|
|
22 -extraction_function ${param_extraction_function}
|
|
23 -threads \${GALAXY_SLOTS:-24}
|
|
24 -model:type ${param_type}
|
|
25 ${param_symmetric_regression}
|
|
26 </command>
|
|
27 <inputs>
|
|
28 <param name="param_in" type="data" format="mzML" optional="False" size="20" label="Input files separated by blank" help="(-in)"/>
|
|
29 <param name="param_tr" type="data" format="tabular" optional="False" label="transition file ('TraML' or 'csv')" help="(-tr)"/>
|
|
30 <param name="param_rt_norm" type="data" format="" optional="True" label="RT normalization file (how to map the RTs of this run to the ones stored in the library)" help="(-rt_norm)"/>
|
|
31 <param name="param_min_upper_edge_dist" type="float" value="0.0" label="Minimal distance to the edge to still consider a precursor, in Thomson" help="(-min_upper_edge_dist)"/>
|
|
32 <param name="param_mz_window" type="float" min="0.0" optional="True" value="0.05" label="Extraction window in m/z dimension (in Thomson, to use ppm see -ppm flag). This is the full window size, e.g. 100 ppm would extract 50 ppm on either side." help="(-mz_window)"/>
|
|
33 <param name="param_rt_window" type="float" value="-1.0" label="Extraction window in RT dimension (-1 means extract over the whole range). This is the full window size, e.g. a value of 1000 seconds would extract 500 seconds on either side." help="(-rt_window)"/>
|
|
34 <param name="param_is_swath" type="boolean" truevalue="-is_swath true" falsevalue="-is_swath false" checked="false" optional="True" label="Set this flag if the data is SWATH data" help="(-is_swath)"/>
|
|
35 <param name="param_ppm" type="boolean" truevalue="-ppm true" falsevalue="-ppm false" checked="false" optional="True" label="m/z extraction_window is in ppm" help="(-ppm)"/>
|
|
36 <param name="param_extract_MS1" type="boolean" truevalue="-extract_MS1 true" falsevalue="-extract_MS1 false" checked="false" optional="True" label="Extract the MS1 transitions based on the precursor values in the TraML file" help="(-extract_MS1)"/>
|
|
37 <param name="param_extraction_function" type="select" optional="True" value="tophat" label="Function used to extract the signal" help="(-extraction_function)">
|
|
38 <option value="tophat">tophat</option>
|
|
39 <option value="bartlett">bartlett</option>
|
|
40 </param>
|
|
41 <param name="param_type" type="select" optional="True" value="linear" label="Type of model" help="(-type)">
|
|
42 <option value="linear">linear</option>
|
|
43 <option value="b_spline">b_spline</option>
|
|
44 <option value="interpolated">interpolated</option>
|
|
45 </param>
|
|
46 <param name="param_symmetric_regression" type="boolean" truevalue="-model:symmetric_regression true" falsevalue="-model:symmetric_regression false" checked="false" optional="True" label="Only for 'linear' model: Perform linear regression on 'y - x' vs. 'y + x', instead of on 'y' vs. 'x'." help="(-symmetric_regression)"/>
|
|
47 </inputs>
|
|
48 <outputs>
|
|
49 <data name="param_out" label="output file" format="mzML"/>
|
|
50 </outputs>
|
|
51 <help>**What it does**
|
|
52
|
|
53 Extract chromatograms (XIC) from a MS2 map file.
|
|
54
|
|
55
|
|
56 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_OpenSwathChromatogramExtractor.html
|
|
57
|
|
58 @REFERENCES@
|
|
59 </help>
|
|
60 </tool>
|