0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="NoiseFilterSGolay" name="NoiseFilterSGolay" version="2.0.0">
|
|
3 <description>Removes noise from profile spectra by using a Savitzky Golay filter. Requires uniform (equidistant) data.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">NoiseFilterSGolay</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>NoiseFilterSGolay
|
|
11
|
|
12 #if $param_in:
|
|
13 -in $param_in
|
|
14 #end if
|
|
15 #if $param_out:
|
|
16 -out $param_out
|
|
17 #end if
|
|
18 -threads \${GALAXY_SLOTS:-24}
|
|
19 #if $param_algorithm_frame_length:
|
|
20 -algorithm:frame_length $param_algorithm_frame_length
|
|
21 #end if
|
|
22 #if $param_algorithm_polynomial_order:
|
|
23 -algorithm:polynomial_order $param_algorithm_polynomial_order
|
|
24 #end if
|
|
25 #if $adv_opts.adv_opts_selector=='advanced':
|
|
26 #if $adv_opts.param_processOption:
|
|
27 -processOption
|
|
28 #if " " in str($adv_opts.param_processOption):
|
|
29 "$adv_opts.param_processOption"
|
|
30 #else
|
|
31 $adv_opts.param_processOption
|
|
32 #end if
|
|
33 #end if
|
|
34 #if $adv_opts.param_force:
|
|
35 -force
|
|
36 #end if
|
|
37 #end if
|
|
38 </command>
|
|
39 <inputs>
|
|
40 <param name="param_in" type="data" format="mzml" optional="False" label="input raw data file" help="(-in) "/>
|
|
41 <param name="param_algorithm_frame_length" type="integer" value="11" label="The number of subsequent data points used for smoothing" help="(-frame_length) <br>This number has to be uneven. If it is not, 1 will be added"/>
|
|
42 <param name="param_algorithm_polynomial_order" type="integer" value="4" label="Order or the polynomial that is fitted" help="(-polynomial_order) "/>
|
|
43 <expand macro="advanced_options">
|
|
44 <param name="param_processOption" type="select" optional="True" value="inmemory" label="Whether to load all data and process them in-memory or whether to process the data on the fly (lowmemory) without loading the whole file into memory first" help="(-processOption) ">
|
|
45 <option value="inmemory">inmemory</option>
|
|
46 <option value="lowmemory">lowmemory</option>
|
|
47 </param>
|
|
48 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
49 </expand>
|
|
50 </inputs>
|
|
51 <outputs>
|
|
52 <data name="param_out" format="mzml"/>
|
|
53 </outputs>
|
|
54 <help>**What it does**
|
|
55
|
|
56 Removes noise from profile spectra by using a Savitzky Golay filter. Requires uniform (equidistant) data.
|
|
57
|
|
58
|
|
59 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_NoiseFilterSGolay.html</help>
|
|
60 <expand macro="references"/>
|
|
61 </tool>
|