|
0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
|
2 <tool id="SpectraMerger" name="SpectraMerger" version="1.12.0">
|
|
|
3 <description>Merges spectra (each MS level separately), increasing S/N ratios.</description>
|
|
|
4 <macros>
|
|
|
5 <token name="@EXECUTABLE@">SpectraMerger</token>
|
|
|
6 <import>macros.xml</import>
|
|
|
7 </macros>
|
|
|
8 <expand macro="stdio"/>
|
|
|
9 <expand macro="requirements"/>
|
|
|
10 <command>SpectraMerger
|
|
|
11
|
|
|
12 -in ${param_in}
|
|
|
13 -out ${param_out}
|
|
|
14 -merging_method ${param_merging_method}
|
|
|
15 -threads \${GALAXY_SLOTS:-24}
|
|
|
16 -algorithm:block_method:ms_levels ${param_ms_levels}
|
|
|
17 -algorithm:block_method:rt_block_size ${param_rt_block_size}
|
|
|
18 -algorithm:block_method:rt_max_length ${param_rt_max_length}
|
|
|
19 -algorithm:precursor_method:mz_tolerance ${param_mz_tolerance}
|
|
|
20 -algorithm:precursor_method:rt_tolerance ${param_rt_tolerance}
|
|
|
21 #if $adv_opts.adv_opts_selector=='advanced':
|
|
|
22 -algorithm:mz_binning_width ${adv_opts.param_mz_binning_width}
|
|
|
23 -algorithm:mz_binning_width_unit ${adv_opts.param_mz_binning_width_unit}
|
|
|
24 -algorithm:sort_blocks ${adv_opts.param_sort_blocks}
|
|
|
25 #end if
|
|
|
26 </command>
|
|
|
27 <inputs>
|
|
|
28 <param name="param_in" type="data" format="mzML" optional="False" label="Input mzML file." help="(-in)"/>
|
|
|
29 <param name="param_merging_method" type="select" optional="True" value="block_method" label="Method of merging which should be used." help="(-merging_method)">
|
|
|
30 <option value="precursor_method">precursor_method</option>
|
|
|
31 <option value="block_method">block_method</option>
|
|
|
32 </param>
|
|
|
33 <param name="param_ms_levels" type="text" min="1" optional="True" size="20" value="1" label="Merge spectra of this level. All spectra with other MS levels remain untouched." help="(-ms_levels)"/>
|
|
|
34 <param name="param_rt_block_size" type="integer" min="1" optional="True" value="5" label="Maximum number of scans to be summed up." help="(-rt_block_size)"/>
|
|
|
35 <param name="param_rt_max_length" type="float" min="0.0" max="1e+11" optional="True" value="0.0" label="Maximum RT size of the block in seconds (0.0 = no size restriction)." help="(-rt_max_length)"/>
|
|
|
36 <param name="param_mz_tolerance" type="float" min="0.0" optional="True" value="0.0001" label="Max m/z distance of the precursor entries of two spectra to be merged in [Da]." help="(-mz_tolerance)"/>
|
|
|
37 <param name="param_rt_tolerance" type="float" min="0.0" optional="True" value="5.0" label="Max RT distance of the precursor entries of two spectra to be merged in [s]." help="(-rt_tolerance)"/>
|
|
|
38 <expand macro="advanced_options">
|
|
|
39 <param name="param_mz_binning_width" type="float" min="0.0" optional="True" value="0.0001" label="Max m/z distance of two peaks to be merged." help="(-mz_binning_width)"/>
|
|
|
40 <param name="param_mz_binning_width_unit" type="select" optional="True" value="Da" label="Unit in which the distance between two peaks is given." help="(-mz_binning_width_unit)">
|
|
|
41 <option value="Da">Da</option>
|
|
|
42 <option value="ppm">ppm</option>
|
|
|
43 </param>
|
|
|
44 <param name="param_sort_blocks" type="select" optional="True" value="RT_ascending" label="Sort blocks by <?> before merging them (useful for precursor order)" help="(-sort_blocks)">
|
|
|
45 <option value="RT_ascending">RT_ascending</option>
|
|
|
46 <option value=" RT_descending"> RT_descending</option>
|
|
|
47 </param>
|
|
|
48 </expand>
|
|
|
49 </inputs>
|
|
|
50 <outputs>
|
|
|
51 <data name="param_out" label="Output mzML file with merged spectra." format="mzML"/>
|
|
|
52 </outputs>
|
|
|
53 <help>**What it does**
|
|
|
54
|
|
|
55 Merges spectra (each MS level separately), increasing S/N ratios.
|
|
|
56
|
|
|
57
|
|
|
58 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_SpectraMerger.html
|
|
|
59
|
|
|
60 @REFERENCES@
|
|
|
61 </help>
|
|
|
62 </tool>
|