comparison baseline_filter.xml @ 0:ba86fd127f5a draft

Uploaded
author galaxyp
date Wed, 19 Dec 2012 00:32:25 -0500
parents
children cf0d72c7b482
comparison
equal deleted inserted replaced
-1:000000000000 0:ba86fd127f5a
1 <tool id="openms_baseline_filter" version="0.1.0" name="Baseline Filter">
2 <description>
3 Executes the top-hat filter to remove the baseline of an MS experiment.
4 </description>
5 <requirements>
6 <requirement type="package">openms</requirement>
7 </requirements>
8 <command interpreter="python">
9 openms_wrapper.py --executable 'BaselineFilter' --config $config
10 </command>
11 <configfiles>
12 <configfile name="config">[simple_options]
13 in=${in}
14 out=${out}
15 </configfile>
16 </configfiles>
17 <inputs>
18 <param format="mzml" name="in" type="data" label="Input mzML"/>
19 </inputs>
20 <outputs>
21 <data format="mzml" name="out" />
22 </outputs>
23 <help>
24 **What it does**
25
26 This nonlinear filter, known as the top-hat operator in morphological mathematics (see Soille, ''Morphological Image Analysis''), is independent of the underlying baseline shape. It is able to detect an over brightness even if the environment is not uniform. The principle is based on the subtraction of a signal from its opening (erosion followed by a dilation). The size the structuring element (here a flat line) being conditioned by the width of the lineament (in our case the maximum width of a mass spectrometric peak) to be detected.
27
28 http://ftp.mi.fu-berlin.de/OpenMS/doc-1.9-official/html/TOPP_BaselineFilter.html
29 http://ftp.mi.fu-berlin.de/OpenMS/doc-1.9-official/html/TOPP_example_signalprocessing.html#TOPP_example_signalprocessing_parameters
30
31 **Citation**
32
33 For the underlying tool, please cite ``Marc Sturm, Andreas Bertsch, Clemens Gröpl, Andreas Hildebrandt, Rene Hussong, Eva Lange, Nico Pfeifer, Ole Schulz-Trieglaff, Alexandra Zerck, Knut Reinert, and Oliver Kohlbacher, 2008. OpenMS – an Open-Source Software Framework for Mass Spectrometry. BMC Bioinformatics 9: 163. doi:10.1186/1471-2105-9-163.``
34
35 If you use this tool in Galaxy, please cite Chilton J, et al. https://bitbucket.org/galaxyp/galaxyp-toolshed-openms
36 </help>
37 </tool>