comparison PeakPickerWavelet.xml @ 4:6ead64a594bd draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/openms commit 7a5239910fda9ed90cca286a38855703b40b1b56-dirty
author bgruening
date Wed, 27 Jan 2016 10:06:49 -0500
parents 3d84209d3178
children
comparison
equal deleted inserted replaced
3:ec62782f6c68 4:6ead64a594bd
1 <?xml version='1.0' encoding='UTF-8'?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <tool id="PeakPickerWavelet" name="PeakPickerWavelet" version="1.12.0"> 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 <description>Finds mass spectrometric peaks in profile mass spectra.</description> 3 <!--Proposed Tool Section: [Signal processing and preprocessing]-->
4 <macros> 4 <tool id="PeakPickerWavelet" name="PeakPickerWavelet" version="2.0.0">
5 <token name="@EXECUTABLE@">PeakPickerWavelet</token> 5 <description>Finds mass spectrometric peaks in profile mass spectra.</description>
6 <import>macros.xml</import> 6 <macros>
7 </macros> 7 <token name="@EXECUTABLE@">PeakPickerWavelet</token>
8 <expand macro="stdio"/> 8 <import>macros.xml</import>
9 <expand macro="requirements"/> 9 </macros>
10 <command>PeakPickerWavelet 10 <expand macro="references"/>
11 <expand macro="stdio"/>
12 <expand macro="requirements"/>
13 <command>PeakPickerWavelet
11 14
12 -in ${param_in} 15 #if $param_in:
13 -out ${param_out} 16 -in $param_in
14 -threads \${GALAXY_SLOTS:-24} 17 #end if
15 -algorithm:signal_to_noise ${param_signal_to_noise} 18 #if $param_out:
16 -algorithm:peak_width ${param_peak_width} 19 -out $param_out
17 ${param_estimate_peak_width} 20 #end if
21 -threads \${GALAXY_SLOTS:-24}
22 #if $param_algorithm_signal_to_noise:
23 -algorithm:signal_to_noise $param_algorithm_signal_to_noise
24 #end if
25 #if $param_algorithm_peak_width:
26 -algorithm:peak_width $param_algorithm_peak_width
27 #end if
28 #if $param_algorithm_estimate_peak_width:
29 -algorithm:estimate_peak_width
30 #end if
18 #if $adv_opts.adv_opts_selector=='advanced': 31 #if $adv_opts.adv_opts_selector=='advanced':
19 ${adv_opts.param_write_peak_meta_data} 32 #if $adv_opts.param_write_peak_meta_data:
20 -algorithm:centroid_percentage ${adv_opts.param_centroid_percentage} 33 -write_peak_meta_data
21 -algorithm:fwhm_lower_bound_factor ${adv_opts.param_fwhm_lower_bound_factor} 34 #end if
22 -algorithm:fwhm_upper_bound_factor ${adv_opts.param_fwhm_upper_bound_factor} 35 #if $adv_opts.param_force:
23 -algorithm:optimization:iterations ${adv_opts.param_iterations} 36 -force
24 -algorithm:optimization:penalties:position ${adv_opts.param_position} 37 #end if
25 -algorithm:optimization:penalties:left_width ${adv_opts.param_left_width} 38 #if $adv_opts.param_algorithm_centroid_percentage:
26 -algorithm:optimization:penalties:right_width ${adv_opts.param_right_width} 39 -algorithm:centroid_percentage $adv_opts.param_algorithm_centroid_percentage
27 -algorithm:optimization:penalties:height ${adv_opts.param_height} 40 #end if
28 -algorithm:optimization:2d:tolerance_mz ${adv_opts.param_tolerance_mz} 41 #if $adv_opts.param_algorithm_fwhm_lower_bound_factor:
29 -algorithm:optimization:2d:max_peak_distance ${adv_opts.param_max_peak_distance} 42 -algorithm:fwhm_lower_bound_factor $adv_opts.param_algorithm_fwhm_lower_bound_factor
30 -algorithm:thresholds:peak_bound ${adv_opts.param_peak_bound} 43 #end if
31 -algorithm:thresholds:peak_bound_ms2_level ${adv_opts.param_peak_bound_ms2_level} 44 #if $adv_opts.param_algorithm_fwhm_upper_bound_factor:
32 -algorithm:thresholds:correlation ${adv_opts.param_correlation} 45 -algorithm:fwhm_upper_bound_factor $adv_opts.param_algorithm_fwhm_upper_bound_factor
33 -algorithm:thresholds:noise_level ${adv_opts.param_noise_level} 46 #end if
34 -algorithm:thresholds:search_radius ${adv_opts.param_search_radius} 47 #if $adv_opts.param_algorithm_optimization_iterations:
35 -algorithm:wavelet_transform:spacing ${adv_opts.param_spacing} 48 -algorithm:optimization:iterations $adv_opts.param_algorithm_optimization_iterations
36 ${adv_opts.param_deconvolution} 49 #end if
37 -algorithm:deconvolution:asym_threshold ${adv_opts.param_asym_threshold} 50 #if $adv_opts.param_algorithm_optimization_penalties_position:
38 -algorithm:deconvolution:left_width ${adv_opts.param_left_width} 51 -algorithm:optimization:penalties:position $adv_opts.param_algorithm_optimization_penalties_position
39 -algorithm:deconvolution:right_width ${adv_opts.param_right_width} 52 #end if
40 -algorithm:deconvolution:scaling ${adv_opts.param_scaling} 53 #if $adv_opts.param_algorithm_optimization_penalties_left_width:
41 -algorithm:deconvolution:fitting:fwhm_threshold ${adv_opts.param_fwhm_threshold} 54 -algorithm:optimization:penalties:left_width $adv_opts.param_algorithm_optimization_penalties_left_width
42 -algorithm:deconvolution:fitting:eps_abs ${adv_opts.param_eps_abs} 55 #end if
43 -algorithm:deconvolution:fitting:eps_rel ${adv_opts.param_eps_rel} 56 #if $adv_opts.param_algorithm_optimization_penalties_right_width:
44 -algorithm:deconvolution:fitting:max_iteration ${adv_opts.param_max_iteration} 57 -algorithm:optimization:penalties:right_width $adv_opts.param_algorithm_optimization_penalties_right_width
45 -algorithm:deconvolution:fitting:penalties:position ${adv_opts.param_position} 58 #end if
46 -algorithm:deconvolution:fitting:penalties:height ${adv_opts.param_height} 59 #if $adv_opts.param_algorithm_optimization_penalties_height:
47 -algorithm:deconvolution:fitting:penalties:left_width ${adv_opts.param_left_width} 60 -algorithm:optimization:penalties:height $adv_opts.param_algorithm_optimization_penalties_height
48 -algorithm:deconvolution:fitting:penalties:right_width ${adv_opts.param_right_width} 61 #end if
49 -algorithm:SignalToNoiseEstimationParameter:max_intensity ${adv_opts.param_max_intensity} 62 #if $adv_opts.param_algorithm_optimization_2d_tolerance_mz:
50 -algorithm:SignalToNoiseEstimationParameter:auto_max_stdev_factor ${adv_opts.param_auto_max_stdev_factor} 63 -algorithm:optimization:2d:tolerance_mz $adv_opts.param_algorithm_optimization_2d_tolerance_mz
51 -algorithm:SignalToNoiseEstimationParameter:auto_max_percentile ${adv_opts.param_auto_max_percentile} 64 #end if
52 -algorithm:SignalToNoiseEstimationParameter:auto_mode ${adv_opts.param_auto_mode} 65 #if $adv_opts.param_algorithm_optimization_2d_max_peak_distance:
53 -algorithm:SignalToNoiseEstimationParameter:win_len ${adv_opts.param_win_len} 66 -algorithm:optimization:2d:max_peak_distance $adv_opts.param_algorithm_optimization_2d_max_peak_distance
54 -algorithm:SignalToNoiseEstimationParameter:bin_count ${adv_opts.param_bin_count} 67 #end if
55 -algorithm:SignalToNoiseEstimationParameter:stdev_mp ${adv_opts.param_stdev_mp} 68 #if $adv_opts.param_algorithm_thresholds_peak_bound:
56 -algorithm:SignalToNoiseEstimationParameter:min_required_elements ${adv_opts.param_min_required_elements} 69 -algorithm:thresholds:peak_bound $adv_opts.param_algorithm_thresholds_peak_bound
57 -algorithm:SignalToNoiseEstimationParameter:noise_for_empty_window ${adv_opts.param_noise_for_empty_window} 70 #end if
71 #if $adv_opts.param_algorithm_thresholds_peak_bound_ms2_level:
72 -algorithm:thresholds:peak_bound_ms2_level $adv_opts.param_algorithm_thresholds_peak_bound_ms2_level
73 #end if
74 #if $adv_opts.param_algorithm_thresholds_correlation:
75 -algorithm:thresholds:correlation $adv_opts.param_algorithm_thresholds_correlation
76 #end if
77 #if $adv_opts.param_algorithm_thresholds_noise_level:
78 -algorithm:thresholds:noise_level $adv_opts.param_algorithm_thresholds_noise_level
79 #end if
80 #if $adv_opts.param_algorithm_thresholds_search_radius:
81 -algorithm:thresholds:search_radius $adv_opts.param_algorithm_thresholds_search_radius
82 #end if
83 #if $adv_opts.param_algorithm_wavelet_transform_spacing:
84 -algorithm:wavelet_transform:spacing $adv_opts.param_algorithm_wavelet_transform_spacing
85 #end if
86 #if $adv_opts.param_algorithm_deconvolution_deconvolution:
87 -algorithm:deconvolution:deconvolution
88 #end if
89 #if $adv_opts.param_algorithm_deconvolution_asym_threshold:
90 -algorithm:deconvolution:asym_threshold $adv_opts.param_algorithm_deconvolution_asym_threshold
91 #end if
92 #if $adv_opts.param_algorithm_deconvolution_left_width:
93 -algorithm:deconvolution:left_width $adv_opts.param_algorithm_deconvolution_left_width
94 #end if
95 #if $adv_opts.param_algorithm_deconvolution_right_width:
96 -algorithm:deconvolution:right_width $adv_opts.param_algorithm_deconvolution_right_width
97 #end if
98 #if $adv_opts.param_algorithm_deconvolution_scaling:
99 -algorithm:deconvolution:scaling $adv_opts.param_algorithm_deconvolution_scaling
100 #end if
101 #if $adv_opts.param_algorithm_deconvolution_fitting_fwhm_threshold:
102 -algorithm:deconvolution:fitting:fwhm_threshold $adv_opts.param_algorithm_deconvolution_fitting_fwhm_threshold
103 #end if
104 #if $adv_opts.param_algorithm_deconvolution_fitting_eps_abs:
105 -algorithm:deconvolution:fitting:eps_abs $adv_opts.param_algorithm_deconvolution_fitting_eps_abs
106 #end if
107 #if $adv_opts.param_algorithm_deconvolution_fitting_eps_rel:
108 -algorithm:deconvolution:fitting:eps_rel $adv_opts.param_algorithm_deconvolution_fitting_eps_rel
109 #end if
110 #if $adv_opts.param_algorithm_deconvolution_fitting_max_iteration:
111 -algorithm:deconvolution:fitting:max_iteration $adv_opts.param_algorithm_deconvolution_fitting_max_iteration
112 #end if
113 #if $adv_opts.param_algorithm_deconvolution_fitting_penalties_position:
114 -algorithm:deconvolution:fitting:penalties:position $adv_opts.param_algorithm_deconvolution_fitting_penalties_position
115 #end if
116 #if $adv_opts.param_algorithm_deconvolution_fitting_penalties_height:
117 -algorithm:deconvolution:fitting:penalties:height $adv_opts.param_algorithm_deconvolution_fitting_penalties_height
118 #end if
119 #if $adv_opts.param_algorithm_deconvolution_fitting_penalties_left_width:
120 -algorithm:deconvolution:fitting:penalties:left_width $adv_opts.param_algorithm_deconvolution_fitting_penalties_left_width
121 #end if
122 #if $adv_opts.param_algorithm_deconvolution_fitting_penalties_right_width:
123 -algorithm:deconvolution:fitting:penalties:right_width $adv_opts.param_algorithm_deconvolution_fitting_penalties_right_width
124 #end if
125 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_max_intensity:
126 -algorithm:SignalToNoiseEstimationParameter:max_intensity $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_max_intensity
127 #end if
128 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_auto_max_stdev_factor:
129 -algorithm:SignalToNoiseEstimationParameter:auto_max_stdev_factor $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_auto_max_stdev_factor
130 #end if
131 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_auto_max_percentile:
132 -algorithm:SignalToNoiseEstimationParameter:auto_max_percentile $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_auto_max_percentile
133 #end if
134 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_auto_mode:
135 -algorithm:SignalToNoiseEstimationParameter:auto_mode $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_auto_mode
136 #end if
137 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_win_len:
138 -algorithm:SignalToNoiseEstimationParameter:win_len $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_win_len
139 #end if
140 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_bin_count:
141 -algorithm:SignalToNoiseEstimationParameter:bin_count $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_bin_count
142 #end if
143 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_stdev_mp:
144 -algorithm:SignalToNoiseEstimationParameter:stdev_mp $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_stdev_mp
145 #end if
146 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_min_required_elements:
147 -algorithm:SignalToNoiseEstimationParameter:min_required_elements $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_min_required_elements
148 #end if
149 #if $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_noise_for_empty_window:
150 -algorithm:SignalToNoiseEstimationParameter:noise_for_empty_window $adv_opts.param_algorithm_SignalToNoiseEstimationParameter_noise_for_empty_window
151 #end if
58 #end if 152 #end if
59 </command> 153 </command>
60 <inputs> 154 <inputs>
61 <param name="param_in" type="data" format="mzML" optional="False" label="input profile data file " help="(-in)"/> 155 <param format="mzml" help="(-in) " label="input profile data file" name="param_in" optional="False" type="data"/>
62 <param name="param_signal_to_noise" type="float" min="0.0" optional="True" value="1.0" label="Minimal signal to noise ratio for a peak to be picked." help="(-signal_to_noise)"/> 156 <param help="(-signal_to_noise) " label="Minimal signal to noise ratio for a peak to be picked" min="0.0" name="param_algorithm_signal_to_noise" optional="True" type="float" value="1.0"/>
63 <param name="param_peak_width" type="float" min="0.0" optional="True" value="0.15" label="Approximate fwhm of the peaks." help="(-peak_width)"/> 157 <param help="(-peak_width) " label="Approximate fwhm of the peaks" min="0.0" name="param_algorithm_peak_width" optional="True" type="float" value="0.15"/>
64 <param name="param_estimate_peak_width" type="boolean" truevalue="-algorithm:estimate_peak_width true" falsevalue="-algorithm:estimate_peak_width false" checked="false" optional="True" label="Flag if the average peak width shall be estimated. Attention: when this flag is set, the peak_width is ignored." help="(-estimate_peak_width)"/> 158 <param checked="false" falsevalue="" help="(-estimate_peak_width) Attention: when this flag is set, the peak_width is ignored" label="Flag if the average peak width shall be estimated" name="param_algorithm_estimate_peak_width" optional="True" truevalue="-algorithm:estimate_peak_width" type="boolean"/>
65 <expand macro="advanced_options"> 159 <expand macro="advanced_options">
66 <param name="param_write_peak_meta_data" type="boolean" truevalue="-write_peak_meta_data true" falsevalue="-write_peak_meta_data false" checked="false" optional="True" label="Write additional information about the picked peaks (maximal intensity, left and right area...) into the mzML-file.Attention: this can blow up files,as 7 arrays are stored per spectrum!" help="(-write_peak_meta_data)"/> 160 <param checked="false" falsevalue="" help="(-write_peak_meta_data) Attention: this can blow up files, since seven arrays are stored per spectrum!" label="Write additional information about the picked peaks (maximal intensity, left and right area...) into the mzML-file" name="param_write_peak_meta_data" optional="True" truevalue="-write_peak_meta_data" type="boolean"/>
67 <param name="param_centroid_percentage" type="float" min="0.0" max="1.0" optional="True" value="0.8" label="Percentage of the maximum height that the raw data points must exceed to be taken into account for the calculation of the centroid. If it is 1 the centroid position corresponds to the position of the highest intensity." help="(-centroid_percentage)"/> 161 <param checked="false" falsevalue="" help="(-force) " label="Overwrite tool specific checks" name="param_force" optional="True" truevalue="-force" type="boolean"/>
68 <param name="param_fwhm_lower_bound_factor" type="float" min="0.0" optional="True" value="0.7" label="Factor that calculates the minimal fwhm value from the peak_width. All peaks with width smaller than fwhm_bound_factor * peak_width are discarded." help="(-fwhm_lower_bound_factor)"/> 162 <param help="(-centroid_percentage) If it is 1 the centroid position corresponds to the position of the highest intensity" label="Percentage of the maximum height that the raw data points must exceed to be taken into account for the calculation of the centroid" max="1.0" min="0.0" name="param_algorithm_centroid_percentage" optional="True" type="float" value="0.8"/>
69 <param name="param_fwhm_upper_bound_factor" type="float" min="0.0" optional="True" value="20.0" label="Factor that calculates the maximal fwhm value from the peak_width. All peaks with width greater than fwhm_upper_bound_factor * peak_width are discarded." help="(-fwhm_upper_bound_factor)"/> 163 <param help="(-fwhm_lower_bound_factor) All peaks with width smaller than fwhm_bound_factor * peak_width are discarded" label="Factor that calculates the minimal fwhm value from the peak_width" min="0.0" name="param_algorithm_fwhm_lower_bound_factor" optional="True" type="float" value="0.7"/>
70 <param name="param_iterations" type="integer" min="1" optional="True" value="400" label="maximal number of iterations for the fitting step" help="(-iterations)"/> 164 <param help="(-fwhm_upper_bound_factor) All peaks with width greater than fwhm_upper_bound_factor * peak_width are discarded" label="Factor that calculates the maximal fwhm value from the peak_width" min="0.0" name="param_algorithm_fwhm_upper_bound_factor" optional="True" type="float" value="20.0"/>
71 <param name="param_position" type="float" min="0.0" optional="True" value="0.0" label="penalty term for the fitting of the position:If it differs too much from the initial one it can be penalized " help="(-position)"/> 165 <param help="(-iterations) " label="maximal number of iterations for the fitting step" min="1" name="param_algorithm_optimization_iterations" optional="True" type="integer" value="400"/>
72 <param name="param_left_width" type="float" min="0.0" optional="True" value="1.0" label="penalty term for the fitting of the left width:If the left width differs too much from the initial one during the fitting it can be penalized." help="(-left_width)"/> 166 <param help="(-position) " label="penalty term for the fitting of the position:If it differs too much from the initial one it can be penalized" min="0.0" name="param_algorithm_optimization_penalties_position" optional="True" type="float" value="0.0"/>
73 <param name="param_right_width" type="float" min="0.0" optional="True" value="1.0" label="penalty term for the fitting of the right width:If the right width differs too much from the initial one during the fitting it can be penalized." help="(-right_width)"/> 167 <param help="(-left_width) " label="penalty term for the fitting of the left width:If the left width differs too much from the initial one during the fitting it can be penalized" min="0.0" name="param_algorithm_optimization_penalties_left_width" optional="True" type="float" value="1.0"/>
74 <param name="param_height" type="float" min="0.0" optional="True" value="1.0" label="penalty term for the fitting of the intensity (only used in 2D Optimization):If it gets negative during the fitting it can be penalized." help="(-height)"/> 168 <param help="(-right_width) " label="penalty term for the fitting of the right width:If the right width differs too much from the initial one during the fitting it can be penalized" min="0.0" name="param_algorithm_optimization_penalties_right_width" optional="True" type="float" value="1.0"/>
75 <param name="param_tolerance_mz" type="float" min="0.0" optional="True" value="2.2" label="mz tolerance for cluster construction" help="(-tolerance_mz)"/> 169 <param help="(-height) " label="penalty term for the fitting of the intensity (only used in 2D Optimization):If it gets negative during the fitting it can be penalized" min="0.0" name="param_algorithm_optimization_penalties_height" optional="True" type="float" value="1.0"/>
76 <param name="param_max_peak_distance" type="float" min="0.0" optional="True" value="1.2" label="maximal peak distance in mz in a cluster" help="(-max_peak_distance)"/> 170 <param help="(-tolerance_mz) " label="mz tolerance for cluster construction" min="0.0" name="param_algorithm_optimization_2d_tolerance_mz" optional="True" type="float" value="2.2"/>
77 <param name="param_peak_bound" type="float" min="0.0" optional="True" value="10.0" label="Minimal peak intensity." help="(-peak_bound)"/> 171 <param help="(-max_peak_distance) " label="maximal peak distance in mz in a cluste" min="0.0" name="param_algorithm_optimization_2d_max_peak_distance" optional="True" type="float" value="1.2"/>
78 <param name="param_peak_bound_ms2_level" type="float" min="0.0" optional="True" value="10.0" label="Minimal peak intensity for MS/MS peaks." help="(-peak_bound_ms2_level)"/> 172 <param help="(-peak_bound) " label="Minimal peak intensity" min="0.0" name="param_algorithm_thresholds_peak_bound" optional="True" type="float" value="10.0"/>
79 <param name="param_correlation" type="float" min="0.0" max="1.0" optional="True" value="0.5" label="minimal correlation of a peak and the raw signal. If a peak has a lower correlation it is skipped." help="(-correlation)"/> 173 <param help="(-peak_bound_ms2_level) " label="Minimal peak intensity for MS/MS peaks" min="0.0" name="param_algorithm_thresholds_peak_bound_ms2_level" optional="True" type="float" value="10.0"/>
80 <param name="param_noise_level" type="float" min="0.0" optional="True" value="0.1" label="noise level for the search of the peak endpoints." help="(-noise_level)"/> 174 <param help="(-correlation) If a peak has a lower correlation it is skipped" label="minimal correlation of a peak and the raw signal" max="1.0" min="0.0" name="param_algorithm_thresholds_correlation" optional="True" type="float" value="0.5"/>
81 <param name="param_search_radius" type="integer" min="0" optional="True" value="3" label="search radius for the search of the maximum in the signal after a maximum in the cwt was found" help="(-search_radius)"/> 175 <param help="(-noise_level) " label="noise level for the search of the peak endpoints" min="0.0" name="param_algorithm_thresholds_noise_level" optional="True" type="float" value="0.1"/>
82 <param name="param_spacing" type="float" min="0.0" optional="True" value="0.001" label="spacing of the cwt." help="(-spacing)"/> 176 <param help="(-search_radius) " label="search radius for the search of the maximum in the signal after a maximum in the cwt was found" min="0" name="param_algorithm_thresholds_search_radius" optional="True" type="integer" value="3"/>
83 <param name="param_deconvolution" type="boolean" truevalue="-algorithm:deconvolution:deconvolution true" falsevalue="-algorithm:deconvolution:deconvolution false" checked="false" optional="True" label="If you want heavily overlapping peaks to be separated set this value to &quot;true&quot;" help="(-deconvolution)"/> 177 <param help="(-spacing) Note that the accuracy of the picked peak's centroid position depends in the Raw data spacing, i.e., 50% of raw peak distance at most" label="Spacing of the CWT" min="0.0" name="param_algorithm_wavelet_transform_spacing" optional="True" type="float" value="0.001"/>
84 <param name="param_asym_threshold" type="float" min="0.0" optional="True" value="0.3" label="If the symmetry of a peak is smaller than asym_thresholds it is assumed that it consists of more than one peak and the deconvolution procedure is started." help="(-asym_threshold)"/> 178 <param checked="false" falsevalue="" help="(-deconvolution) " label="If you want heavily overlapping peaks to be separated set this value to &quot;true&quot;" name="param_algorithm_deconvolution_deconvolution" optional="True" truevalue="-algorithm:deconvolution:deconvolution" type="boolean"/>
85 <param name="param_left_width" type="float" min="0.0" optional="True" value="2.0" label="1/left_width is the initial value for the left width of the peaks found in the deconvolution step." help="(-left_width)"/> 179 <param help="(-asym_threshold) " label="If the symmetry of a peak is smaller than asym_thresholds it is assumed that it consists of more than one peak and the deconvolution procedure is started" min="0.0" name="param_algorithm_deconvolution_asym_threshold" optional="True" type="float" value="0.3"/>
86 <param name="param_right_width" type="float" min="0.0" optional="True" value="2.0" label="1/right_width is the initial value for the right width of the peaks found in the deconvolution step." help="(-right_width)"/> 180 <param help="(-left_width) " label="1/left_width is the initial value for the left width of the peaks found in the deconvolution step" min="0.0" name="param_algorithm_deconvolution_left_width" optional="True" type="float" value="2.0"/>
87 <param name="param_scaling" type="float" min="0.0" optional="True" value="0.12" label="Initial scaling of the cwt used in the seperation of heavily overlapping peaks. The initial value is used for charge 1, for higher charges it is adapted to scaling/charge." help="(-scaling)"/> 181 <param help="(-right_width) " label="1/right_width is the initial value for the right width of the peaks found in the deconvolution step" min="0.0" name="param_algorithm_deconvolution_right_width" optional="True" type="float" value="2.0"/>
88 <param name="param_fwhm_threshold" type="float" min="0.0" optional="True" value="0.7" label="If the fwhm of a peak is higher than fwhm_thresholds it is assumed that it consists of more than one peak and the deconvolution procedure is started." help="(-fwhm_threshold)"/> 182 <param help="(-scaling) The initial value is used for charge 1, for higher charges it is adapted to scaling/charge" label="Initial scaling of the cwt used in the separation of heavily overlapping peaks" min="0.0" name="param_algorithm_deconvolution_scaling" optional="True" type="float" value="0.12"/>
89 <param name="param_eps_abs" type="float" min="0.0" optional="True" value="9.99999974738e-06" label="if the absolute error gets smaller than this value the fitting is stopped." help="(-eps_abs)"/> 183 <param help="(-fwhm_threshold) " label="If the FWHM of a peak is higher than 'fwhm_thresholds' it is assumed that it consists of more than one peak and the deconvolution procedure is started" min="0.0" name="param_algorithm_deconvolution_fitting_fwhm_threshold" optional="True" type="float" value="0.7"/>
90 <param name="param_eps_rel" type="float" min="0.0" optional="True" value="9.99999974738e-06" label="if the relative error gets smaller than this value the fitting is stopped." help="(-eps_rel)"/> 184 <param help="(-eps_abs) " label="if the absolute error gets smaller than this value the fitting is stopped" min="0.0" name="param_algorithm_deconvolution_fitting_eps_abs" optional="True" type="float" value="9.99999974738e-06"/>
91 <param name="param_max_iteration" type="integer" min="1" optional="True" value="10" label="maximal number of iterations for the fitting step" help="(-max_iteration)"/> 185 <param help="(-eps_rel) " label="if the relative error gets smaller than this value the fitting is stopped" min="0.0" name="param_algorithm_deconvolution_fitting_eps_rel" optional="True" type="float" value="9.99999974738e-06"/>
92 <param name="param_position" type="float" min="0.0" optional="True" value="0.0" label="penalty term for the fitting of the peak position:If the position changes more than 0.5Da during the fitting it can be penalized as well as discrepancies of the peptide mass rule." help="(-position)"/> 186 <param help="(-max_iteration) " label="maximal number of iterations for the fitting step" min="1" name="param_algorithm_deconvolution_fitting_max_iteration" optional="True" type="integer" value="10"/>
93 <param name="param_height" type="float" min="0.0" optional="True" value="1.0" label="penalty term for the fitting of the intensity:If it gets negative during the fitting it can be penalized." help="(-height)"/> 187 <param help="(-position) " label="penalty term for the fitting of the peak position:If the position changes more than 0.5Da during the fitting it can be penalized as well as discrepancies of the peptide mass rule" min="0.0" name="param_algorithm_deconvolution_fitting_penalties_position" optional="True" type="float" value="0.0"/>
94 <param name="param_left_width" type="float" min="0.0" optional="True" value="0.0" label="penalty term for the fitting of the left width:If the left width gets too broad or negative during the fitting it can be penalized." help="(-left_width)"/> 188 <param help="(-height) " label="penalty term for the fitting of the intensity:If it gets negative during the fitting it can be penalized" min="0.0" name="param_algorithm_deconvolution_fitting_penalties_height" optional="True" type="float" value="1.0"/>
95 <param name="param_right_width" type="float" min="0.0" optional="True" value="0.0" label="penalty term for the fitting of the right width:If the right width gets too broad or negative during the fitting it can be penalized." help="(-right_width)"/> 189 <param help="(-left_width) " label="penalty term for the fitting of the left width:If the left width gets too broad or negative during the fitting it can be penalized" min="0.0" name="param_algorithm_deconvolution_fitting_penalties_left_width" optional="True" type="float" value="0.0"/>
96 <param name="param_max_intensity" type="integer" min="-1" optional="True" value="-1" label="maximal intensity considered for histogram construction. By default, it will be calculated automatically (see auto_mode). Only provide this parameter if you know what you are doing (and change 'auto_mode' to '-1')! All intensities EQUAL/ABOVE 'max_intensity' will not be added to the histogram. If you choose 'max_intensity' too small, the noise estimate might be too small as well. If chosen too big, the bins become quite large (which you could counter by increasing 'bin_count', which increases runtime)." help="(-max_intensity)"/> 190 <param help="(-right_width) " label="penalty term for the fitting of the right width:If the right width gets too broad or negative during the fitting it can be penalized" min="0.0" name="param_algorithm_deconvolution_fitting_penalties_right_width" optional="True" type="float" value="0.0"/>
97 <param name="param_auto_max_stdev_factor" type="float" min="0.0" max="999.0" optional="True" value="3.0" label="parameter for 'max_intensity' estimation (if 'auto_mode' == 0): mean + 'auto_max_stdev_factor' * stdev" help="(-auto_max_stdev_factor)"/> 191 <param help="(-max_intensity) By default, it will be calculated automatically (see auto_mode). Only provide this parameter if you know what you are doing (and change 'auto_mode' to '-1')! All intensities EQUAL/ABOVE 'max_intensity' will not be added to the histogram. If you choose 'max_intensity' too small, the noise estimate might be too small as well. If chosen too big, the bins become quite large (which you could counter by increasing 'bin_count', which increases runtime)" label="maximal intensity considered for histogram construction" min="-1" name="param_algorithm_SignalToNoiseEstimationParameter_max_intensity" optional="True" type="integer" value="-1"/>
98 <param name="param_auto_max_percentile" type="integer" min="0" max="100" optional="True" value="95" label="parameter for 'max_intensity' estimation (if 'auto_mode' == 1): auto_max_percentile th percentile" help="(-auto_max_percentile)"/> 192 <param help="(-auto_max_stdev_factor) " label="parameter for 'max_intensity' estimation (if 'auto_mode' == 0): mean + 'auto_max_stdev_factor' * stdev" max="999.0" min="0.0" name="param_algorithm_SignalToNoiseEstimationParameter_auto_max_stdev_factor" optional="True" type="float" value="3.0"/>
99 <param name="param_auto_mode" type="integer" min="-1" max="1" optional="True" value="0" label="method to use to determine maximal intensity: -1 --&gt; use 'max_intensity'; 0 --&gt; 'auto_max_stdev_factor' method (default); 1 --&gt; 'auto_max_percentile' method" help="(-auto_mode)"/> 193 <param help="(-auto_max_percentile) " label="parameter for 'max_intensity' estimation (if 'auto_mode' == 1): auto_max_percentile th percentile" max="100" min="0" name="param_algorithm_SignalToNoiseEstimationParameter_auto_max_percentile" optional="True" type="integer" value="95"/>
100 <param name="param_win_len" type="float" min="1.0" optional="True" value="200.0" label="window length in Thomson" help="(-win_len)"/> 194 <param help="(-auto_mode) " label="method to use to determine maximal intensity: -1 --&gt; use 'max_intensity'; 0 --&gt; 'auto_max_stdev_factor' method (default); 1 --&gt; 'auto_max_percentile' method" max="1" min="-1" name="param_algorithm_SignalToNoiseEstimationParameter_auto_mode" optional="True" type="integer" value="0"/>
101 <param name="param_bin_count" type="integer" min="3" optional="True" value="30" label="number of bins for intensity values" help="(-bin_count)"/> 195 <param help="(-win_len) " label="window length in Thomson" min="1.0" name="param_algorithm_SignalToNoiseEstimationParameter_win_len" optional="True" type="float" value="200.0"/>
102 <param name="param_stdev_mp" type="float" min="0.01" max="999.0" optional="True" value="3.0" label="multiplier for stdev" help="(-stdev_mp)"/> 196 <param help="(-bin_count) " label="number of bins for intensity values" min="3" name="param_algorithm_SignalToNoiseEstimationParameter_bin_count" optional="True" type="integer" value="30"/>
103 <param name="param_min_required_elements" type="integer" min="1" optional="True" value="10" label="minimum number of elements required in a window (otherwise it is considered sparse)" help="(-min_required_elements)"/> 197 <param help="(-stdev_mp) " label="multiplier for stdev" max="999.0" min="0.01" name="param_algorithm_SignalToNoiseEstimationParameter_stdev_mp" optional="True" type="float" value="3.0"/>
104 <param name="param_noise_for_empty_window" type="float" value="1e+20" label="noise value used for sparse windows" help="(-noise_for_empty_window)"/> 198 <param help="(-min_required_elements) " label="minimum number of elements required in a window (otherwise it is considered sparse)" min="1" name="param_algorithm_SignalToNoiseEstimationParameter_min_required_elements" optional="True" type="integer" value="10"/>
105 </expand> 199 <param help="(-noise_for_empty_window) " label="noise value used for sparse windows" name="param_algorithm_SignalToNoiseEstimationParameter_noise_for_empty_window" type="float" value="1e+20"/>
106 </inputs> 200 </expand>
107 <outputs> 201 </inputs>
108 <data name="param_out" label="output peak file " format="mzML"/> 202 <outputs>
109 </outputs> 203 <data format="mzml" name="param_out"/>
110 <help>**What it does** 204 </outputs>
111 205 <help>Finds mass spectrometric peaks in profile mass spectra.
112 Finds mass spectrometric peaks in profile mass spectra.
113 206
114 207
115 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_PeakPickerWavelet.html 208 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_PeakPickerWavelet.html</help>
116 209 </tool>
117 @REFERENCES@
118 </help>
119 </tool>