0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="EICExtractor" name="EICExtractor" version="2.0.0">
|
|
3 <description>Extracts intensities from dedicates positions in a LC/MS map</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">EICExtractor</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>EICExtractor
|
|
11
|
|
12 -in
|
|
13 #for token in $param_in:
|
|
14 $token
|
|
15 #end for
|
|
16 -in_header
|
|
17 #for token in $param_in_header:
|
|
18 $token
|
|
19 #end for
|
|
20 #if $param_pos:
|
|
21 -pos $param_pos
|
|
22 #end if
|
|
23 #if $param_rt_tol:
|
|
24 -rt_tol $param_rt_tol
|
|
25 #end if
|
|
26 #if $param_mz_tol:
|
|
27 -mz_tol $param_mz_tol
|
|
28 #end if
|
|
29 #if $param_rt_collect:
|
|
30 -rt_collect $param_rt_collect
|
|
31 #end if
|
|
32 #if $param_out:
|
|
33 -out $param_out
|
|
34 #end if
|
|
35 -threads \${GALAXY_SLOTS:-24}
|
|
36 #if $param_auto_rt_enabled:
|
|
37 -auto_rt:enabled
|
|
38 #end if
|
|
39 #if $param_auto_rt_out_debug_TIC:
|
|
40 -auto_rt:out_debug_TIC $param_auto_rt_out_debug_TIC
|
|
41 #end if
|
|
42 #if $adv_opts.adv_opts_selector=='advanced':
|
|
43 #if $adv_opts.param_out_separator:
|
|
44 -out_separator "$adv_opts.param_out_separator"
|
|
45 #end if
|
|
46 #if $adv_opts.param_force:
|
|
47 -force
|
|
48 #end if
|
|
49 #if $adv_opts.param_auto_rt_FHWM:
|
|
50 -auto_rt:FHWM $adv_opts.param_auto_rt_FHWM
|
|
51 #end if
|
|
52 #if $adv_opts.param_auto_rt_SNThreshold:
|
|
53 -auto_rt:SNThreshold $adv_opts.param_auto_rt_SNThreshold
|
|
54 #end if
|
|
55 #end if
|
|
56 </command>
|
|
57 <inputs>
|
|
58 <param name="param_in" type="data" format="mzml" multiple="true" optional="False" size="30" label="Input raw data file" help="(-in) ">
|
|
59 <sanitizer>
|
|
60 <valid initial="string.printable">
|
|
61 <remove value="'"/>
|
|
62 <remove value="""/>
|
|
63 </valid>
|
|
64 </sanitizer>
|
|
65 </param>
|
|
66 <param name="param_in_header" type="data" format="txt" multiple="true" optional="True" size="30" label="[for Waters data only] Read additional information from _HEADER.TXT" help="(-in_header) Provide one for each raw input file">
|
|
67 <sanitizer>
|
|
68 <valid initial="string.printable">
|
|
69 <remove value="'"/>
|
|
70 <remove value="""/>
|
|
71 </valid>
|
|
72 </sanitizer>
|
|
73 </param>
|
|
74 <param name="param_pos" type="data" format="tabular" optional="False" label="Input config file stating where to find signal" help="(-pos) "/>
|
|
75 <param name="param_rt_tol" type="float" value="3.0" label="RT tolerance in [s] for finding max peak (whole RT range around RT middle)" help="(-rt_tol) "/>
|
|
76 <param name="param_mz_tol" type="float" value="10.0" label="m/z tolerance in [ppm] for finding a peak" help="(-mz_tol) "/>
|
|
77 <param name="param_rt_collect" type="integer" value="1" label="# of scans up & down in RT from highest point for ppm estimation in result" help="(-rt_collect) "/>
|
|
78 <param name="param_auto_rt_enabled" type="boolean" truevalue="-auto_rt:enabled" falsevalue="" checked="false" optional="True" label="Automatically detect injection peaks from TIC and quantify all m/z x RT combinations" help="(-enabled) "/>
|
|
79 <expand macro="advanced_options">
|
|
80 <param name="param_out_separator" type="text" size="30" value="," label="Separator character for output CSV file" help="(-out_separator) ">
|
|
81 <sanitizer>
|
|
82 <valid initial="string.printable">
|
|
83 <remove value="'"/>
|
|
84 <remove value="""/>
|
|
85 </valid>
|
|
86 </sanitizer>
|
|
87 </param>
|
|
88 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
89 <param name="param_auto_rt_FHWM" type="float" value="5.0" label="Expected full width at half-maximum of each raw RT peak in [s]" help="(-FHWM) Gaussian smoothing filter with this width is applied to TIC"/>
|
|
90 <param name="param_auto_rt_SNThreshold" type="float" value="5.0" label="S/N threshold for a smoothed raw peak to pass peak picking" help="(-SNThreshold) Higher thesholds will result in less peaks"/>
|
|
91 </expand>
|
|
92 </inputs>
|
|
93 <outputs>
|
|
94 <data name="param_out" format="tabular"/>
|
|
95 <data name="param_auto_rt_out_debug_TIC" format="mzml"/>
|
|
96 </outputs>
|
|
97 <help>**What it does**
|
|
98
|
|
99 Extracts intensities from dedicates positions in a LC/MS map
|
|
100
|
|
101
|
|
102 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_EICExtractor.html</help>
|
|
103 <expand macro="references"/>
|
|
104 </tool>
|