comparison NoiseFilterGaussian.xml @ 0:b6baace535ae draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit fb85d488133bb2b5f483b52b2db0ac66038fafb8
author galaxyp
date Wed, 01 Mar 2017 12:23:42 -0500
parents
children 8357cd696719
comparison
equal deleted inserted replaced
-1:000000000000 0:b6baace535ae
1 <?xml version='1.0' encoding='UTF-8'?>
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
3 <!--Proposed Tool Section: [Signal processing and preprocessing]-->
4 <tool id="NoiseFilterGaussian" name="NoiseFilterGaussian" version="2.1.0">
5 <description>Removes noise from profile spectra by using Gaussian filter (on uniform as well as non-uniform data).</description>
6 <macros>
7 <token name="@EXECUTABLE@">NoiseFilterGaussian</token>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="references"/>
11 <expand macro="stdio"/>
12 <expand macro="requirements"/>
13 <command>NoiseFilterGaussian
14
15 #if $param_in:
16 -in $param_in
17 #end if
18 #if $param_out:
19 -out $param_out
20 #end if
21 #if $param_algorithm_gaussian_width:
22 -algorithm:gaussian_width $param_algorithm_gaussian_width
23 #end if
24 #if $param_algorithm_ppm_tolerance:
25 -algorithm:ppm_tolerance $param_algorithm_ppm_tolerance
26 #end if
27 #if $param_algorithm_use_ppm_tolerance:
28 -algorithm:use_ppm_tolerance
29 #end if
30 #if $adv_opts.adv_opts_selector=='advanced':
31 #if $adv_opts.param_processOption:
32 -processOption $adv_opts.param_processOption
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_gaussian_width" type="float" value="0.2" label="Use a gaussian filter width which has approximately the same width as your mass peaks (FWHM in m/z)" help="(-gaussian_width) "/>
42 <param name="param_algorithm_ppm_tolerance" type="float" value="10.0" label="Gaussian width, depending on the m/z position" help="(-ppm_tolerance) &lt;br&gt;The higher the value, the wider the peak and therefore the wider the gaussian"/>
43 <param name="param_algorithm_use_ppm_tolerance" display="radio" type="boolean" truevalue="-algorithm:use_ppm_tolerance" falsevalue="" checked="false" optional="True" label="If true, instead of the gaussian_width value, the ppm_tolerance is used" help="(-use_ppm_tolerance) The gaussian is calculated in each step anew, so this is much slower"/>
44 <expand macro="advanced_options">
45 <param name="param_processOption" display="radio" type="select" optional="False" 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) ">
46 <option value="inmemory" selected="true">inmemory</option>
47 <option value="lowmemory">lowmemory</option>
48 </param>
49 <param name="param_force" display="radio" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
50 </expand>
51 </inputs>
52 <outputs>
53 <data name="param_out" format="mzml"/>
54 </outputs>
55 <help>Removes noise from profile spectra by using Gaussian filter (on uniform as well as non-uniform data).
56
57
58 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_NoiseFilterGaussian.html</help>
59 </tool>