Mercurial > repos > galaxyp > openms_peakpickerwavelet
comparison PeakPickerWavelet.xml @ 14:bf0b36140329 draft default tip
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit 5c080b1e2b99f1c88f4557e9fec8c45c9d23b906
author | galaxyp |
---|---|
date | Fri, 14 Jun 2024 21:37:22 +0000 |
parents | 2077efa205de |
children |
comparison
equal
deleted
inserted
replaced
13:2077efa205de | 14:bf0b36140329 |
---|---|
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 CTDConverter.--> | 1 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTDConverter.--> |
3 <!--Proposed Tool Section: [Signal processing and preprocessing]--> | 2 <!--Proposed Tool Section: [Spectrum processing: Centroiding]--> |
4 <tool id="PeakPickerWavelet" name="PeakPickerWavelet" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05"> | 3 <tool id="PeakPickerWavelet" name="PeakPickerWavelet" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05"> |
5 <description>Finds mass spectrometric peaks in profile mass spectra.</description> | 4 <description>Finds mass spectrometric peaks in profile mass spectra</description> |
6 <macros> | 5 <macros> |
7 <token name="@EXECUTABLE@">PeakPickerWavelet</token> | 6 <token name="@EXECUTABLE@">PeakPickerWavelet</token> |
8 <import>macros.xml</import> | 7 <import>macros.xml</import> |
9 </macros> | 8 </macros> |
10 <expand macro="requirements"/> | 9 <expand macro="requirements"/> |
13 @EXT_FOO@ | 12 @EXT_FOO@ |
14 #import re | 13 #import re |
15 | 14 |
16 ## Preprocessing | 15 ## Preprocessing |
17 mkdir in && | 16 mkdir in && |
18 ln -s '$in' 'in/${re.sub("[^\w\-_]", "_", $in.element_identifier)}.$gxy2omsext($in.ext)' && | 17 cp '$in' 'in/${re.sub("[^\w\-_]", "_", $in.element_identifier)}.$gxy2omsext($in.ext)' && |
19 mkdir out && | 18 mkdir out && |
20 | 19 |
21 ## Main program call | 20 ## Main program call |
22 | 21 |
23 set -o pipefail && | 22 set -o pipefail && |
37 <configfiles> | 36 <configfiles> |
38 <inputs name="args_json" data_style="paths"/> | 37 <inputs name="args_json" data_style="paths"/> |
39 <configfile name="hardcoded_json"><![CDATA[{"log": "log.txt", "threads": "\${GALAXY_SLOTS:-1}", "no_progress": true}]]></configfile> | 38 <configfile name="hardcoded_json"><![CDATA[{"log": "log.txt", "threads": "\${GALAXY_SLOTS:-1}", "no_progress": true}]]></configfile> |
40 </configfiles> | 39 </configfiles> |
41 <inputs> | 40 <inputs> |
42 <param argument="-in" type="data" format="mzml" optional="false" label="input profile data file" help=" select mzml data sets(s)"/> | 41 <param argument="-in" type="data" format="mzml" label="input profile data file" help=" select mzml data sets(s)"/> |
43 <section name="algorithm" title="Algorithm parameters section" help="" expanded="false"> | 42 <section name="algorithm" title="Algorithm parameters section" help="" expanded="false"> |
44 <param name="signal_to_noise" argument="-algorithm:signal_to_noise" type="float" optional="true" min="0.0" value="1.0" label="Minimal signal to noise ratio for a peak to be picked" help=""/> | 43 <param name="signal_to_noise" argument="-algorithm:signal_to_noise" type="float" min="0.0" value="1.0" label="Minimal signal to noise ratio for a peak to be picked" help=""/> |
45 <param name="centroid_percentage" argument="-algorithm:centroid_percentage" type="float" optional="true" min="0.0" max="1.0" 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" help="If it is 1 the centroid position corresponds to the position of the highest intensity"/> | 44 <param name="centroid_percentage" argument="-algorithm:centroid_percentage" type="float" min="0.0" max="1.0" 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" help="If it is 1 the centroid position corresponds to the position of the highest intensity"/> |
46 <param name="peak_width" argument="-algorithm:peak_width" type="float" optional="true" min="0.0" value="0.15" label="Approximate fwhm of the peaks" help=""/> | 45 <param name="peak_width" argument="-algorithm:peak_width" type="float" min="0.0" value="0.15" label="Approximate fwhm of the peaks" help=""/> |
47 <param name="estimate_peak_width" argument="-algorithm:estimate_peak_width" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Flag if the average peak width shall be estimated" help="Attention: when this flag is set, the peak_width is ignored"/> | 46 <param name="estimate_peak_width" argument="-algorithm:estimate_peak_width" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Flag if the average peak width shall be estimated" help="Attention: when this flag is set, the peak_width is ignored"/> |
48 <param name="fwhm_lower_bound_factor" argument="-algorithm:fwhm_lower_bound_factor" type="float" optional="true" min="0.0" value="0.7" label="Factor that calculates the minimal fwhm value from the peak_width" help="All peaks with width smaller than fwhm_bound_factor * peak_width are discarded"/> | 47 <param name="fwhm_lower_bound_factor" argument="-algorithm:fwhm_lower_bound_factor" type="float" min="0.0" value="0.7" label="Factor that calculates the minimal fwhm value from the peak_width" help="All peaks with width smaller than fwhm_bound_factor * peak_width are discarded"/> |
49 <param name="fwhm_upper_bound_factor" argument="-algorithm:fwhm_upper_bound_factor" type="float" optional="true" min="0.0" value="20.0" label="Factor that calculates the maximal fwhm value from the peak_width" help="All peaks with width greater than fwhm_upper_bound_factor * peak_width are discarded"/> | 48 <param name="fwhm_upper_bound_factor" argument="-algorithm:fwhm_upper_bound_factor" type="float" min="0.0" value="20.0" label="Factor that calculates the maximal fwhm value from the peak_width" help="All peaks with width greater than fwhm_upper_bound_factor * peak_width are discarded"/> |
50 <section name="optimization" title="" help="" expanded="false"> | 49 <section name="optimization" title="" help="" expanded="false"> |
51 <param name="iterations" argument="-algorithm:optimization:iterations" type="integer" optional="true" min="1" value="400" label="maximal number of iterations for the fitting step" help=""/> | 50 <param name="iterations" argument="-algorithm:optimization:iterations" type="integer" min="1" value="400" label="maximal number of iterations for the fitting step" help=""/> |
52 <section name="penalties" title="" help="" expanded="false"> | 51 <section name="penalties" title="" help="" expanded="false"> |
53 <param name="position" argument="-algorithm:optimization:penalties:position" type="float" optional="true" min="0.0" 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=""/> | 52 <param name="position" argument="-algorithm:optimization:penalties:position" type="float" min="0.0" 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=""/> |
54 <param name="left_width" argument="-algorithm:optimization:penalties:left_width" type="float" optional="true" min="0.0" 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=""/> | 53 <param name="left_width" argument="-algorithm:optimization:penalties:left_width" type="float" min="0.0" 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=""/> |
55 <param name="right_width" argument="-algorithm:optimization:penalties:right_width" type="float" optional="true" min="0.0" 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=""/> | 54 <param name="right_width" argument="-algorithm:optimization:penalties:right_width" type="float" min="0.0" 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=""/> |
56 <param name="height" argument="-algorithm:optimization:penalties:height" type="float" optional="true" min="0.0" 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=""/> | 55 <param name="height" argument="-algorithm:optimization:penalties:height" type="float" min="0.0" 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=""/> |
57 </section> | 56 </section> |
58 <section name="2d" title="" help="" expanded="false"> | 57 <section name="2d" title="" help="" expanded="false"> |
59 <param name="tolerance_mz" argument="-algorithm:optimization:2d:tolerance_mz" type="float" optional="true" min="0.0" value="2.2" label="mz tolerance for cluster construction" help=""/> | 58 <param name="tolerance_mz" argument="-algorithm:optimization:2d:tolerance_mz" type="float" min="0.0" value="2.2" label="mz tolerance for cluster construction" help=""/> |
60 <param name="max_peak_distance" argument="-algorithm:optimization:2d:max_peak_distance" type="float" optional="true" min="0.0" value="1.2" label="maximal peak distance in mz in a cluste" help=""/> | 59 <param name="max_peak_distance" argument="-algorithm:optimization:2d:max_peak_distance" type="float" min="0.0" value="1.2" label="maximal peak distance in mz in a cluste" help=""/> |
61 </section> | 60 </section> |
62 </section> | 61 </section> |
63 <section name="thresholds" title="" help="" expanded="false"> | 62 <section name="thresholds" title="" help="" expanded="false"> |
64 <param name="peak_bound" argument="-algorithm:thresholds:peak_bound" type="float" optional="true" min="0.0" value="10.0" label="Minimal peak intensity" help=""/> | 63 <param name="peak_bound" argument="-algorithm:thresholds:peak_bound" type="float" min="0.0" value="10.0" label="Minimal peak intensity" help=""/> |
65 <param name="peak_bound_ms2_level" argument="-algorithm:thresholds:peak_bound_ms2_level" type="float" optional="true" min="0.0" value="10.0" label="Minimal peak intensity for MS/MS peaks" help=""/> | 64 <param name="peak_bound_ms2_level" argument="-algorithm:thresholds:peak_bound_ms2_level" type="float" min="0.0" value="10.0" label="Minimal peak intensity for MS/MS peaks" help=""/> |
66 <param name="correlation" argument="-algorithm:thresholds:correlation" type="float" optional="true" min="0.0" max="1.0" value="0.5" label="minimal correlation of a peak and the raw signal" help="If a peak has a lower correlation it is skipped"/> | 65 <param name="correlation" argument="-algorithm:thresholds:correlation" type="float" min="0.0" max="1.0" value="0.5" label="minimal correlation of a peak and the raw signal" help="If a peak has a lower correlation it is skipped"/> |
67 <param name="noise_level" argument="-algorithm:thresholds:noise_level" type="float" optional="true" min="0.0" value="0.1" label="noise level for the search of the peak endpoints" help=""/> | 66 <param name="noise_level" argument="-algorithm:thresholds:noise_level" type="float" min="0.0" value="0.1" label="noise level for the search of the peak endpoints" help=""/> |
68 <param name="search_radius" argument="-algorithm:thresholds:search_radius" type="integer" optional="true" min="0" value="3" label="search radius for the search of the maximum in the signal after a maximum in the cwt was found" help=""/> | 67 <param name="search_radius" argument="-algorithm:thresholds:search_radius" type="integer" min="0" value="3" label="search radius for the search of the maximum in the signal after a maximum in the cwt was found" help=""/> |
69 </section> | 68 </section> |
70 <section name="wavelet_transform" title="" help="" expanded="false"> | 69 <section name="wavelet_transform" title="" help="" expanded="false"> |
71 <param name="spacing" argument="-algorithm:wavelet_transform:spacing" type="float" optional="true" min="0.0" value="0.001" label="Spacing of the CWT" help="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"/> | 70 <param name="spacing" argument="-algorithm:wavelet_transform:spacing" type="float" min="0.0" value="0.001" label="Spacing of the CWT" help="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"/> |
72 </section> | 71 </section> |
73 <section name="deconvolution" title="" help="" expanded="false"> | 72 <section name="deconvolution" title="" help="" expanded="false"> |
74 <param name="deconvolution" argument="-algorithm:deconvolution:deconvolution" type="boolean" truevalue="true" falsevalue="false" checked="false" label="If you want heavily overlapping peaks to be separated set this value to "true"" help=""/> | 73 <param name="deconvolution" argument="-algorithm:deconvolution:deconvolution" type="boolean" truevalue="true" falsevalue="false" checked="false" label="If you want heavily overlapping peaks to be separated set this value to "true"" help=""/> |
75 <param name="asym_threshold" argument="-algorithm:deconvolution:asym_threshold" type="float" optional="true" min="0.0" 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=""/> | 74 <param name="asym_threshold" argument="-algorithm:deconvolution:asym_threshold" type="float" min="0.0" 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=""/> |
76 <param name="left_width" argument="-algorithm:deconvolution:left_width" type="float" optional="true" min="0.0" value="2.0" label="1/left_width is the initial value for the left width of the peaks found in the deconvolution step" help=""/> | 75 <param name="left_width" argument="-algorithm:deconvolution:left_width" type="float" min="0.0" value="2.0" label="1/left_width is the initial value for the left width of the peaks found in the deconvolution step" help=""/> |
77 <param name="right_width" argument="-algorithm:deconvolution:right_width" type="float" optional="true" min="0.0" value="2.0" label="1/right_width is the initial value for the right width of the peaks found in the deconvolution step" help=""/> | 76 <param name="right_width" argument="-algorithm:deconvolution:right_width" type="float" min="0.0" value="2.0" label="1/right_width is the initial value for the right width of the peaks found in the deconvolution step" help=""/> |
78 <param name="scaling" argument="-algorithm:deconvolution:scaling" type="float" optional="true" min="0.0" value="0.12" label="Initial scaling of the cwt used in the separation of heavily overlapping peaks" help="The initial value is used for charge 1, for higher charges it is adapted to scaling/charge"/> | 77 <param name="scaling" argument="-algorithm:deconvolution:scaling" type="float" min="0.0" value="0.12" label="Initial scaling of the cwt used in the separation of heavily overlapping peaks" help="The initial value is used for charge 1, for higher charges it is adapted to scaling/charge"/> |
79 <section name="fitting" title="" help="" expanded="false"> | 78 <section name="fitting" title="" help="" expanded="false"> |
80 <param name="fwhm_threshold" argument="-algorithm:deconvolution:fitting:fwhm_threshold" type="float" optional="true" min="0.0" 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=""/> | 79 <param name="fwhm_threshold" argument="-algorithm:deconvolution:fitting:fwhm_threshold" type="float" min="0.0" 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=""/> |
81 <param name="eps_abs" argument="-algorithm:deconvolution:fitting:eps_abs" type="float" optional="true" min="0.0" value="9.999999747378752e-06" label="if the absolute error gets smaller than this value the fitting is stopped" help=""/> | 80 <param name="eps_abs" argument="-algorithm:deconvolution:fitting:eps_abs" type="float" min="0.0" value="9.999999747378752e-06" label="if the absolute error gets smaller than this value the fitting is stopped" help=""/> |
82 <param name="eps_rel" argument="-algorithm:deconvolution:fitting:eps_rel" type="float" optional="true" min="0.0" value="9.999999747378752e-06" label="if the relative error gets smaller than this value the fitting is stopped" help=""/> | 81 <param name="eps_rel" argument="-algorithm:deconvolution:fitting:eps_rel" type="float" min="0.0" value="9.999999747378752e-06" label="if the relative error gets smaller than this value the fitting is stopped" help=""/> |
83 <param name="max_iteration" argument="-algorithm:deconvolution:fitting:max_iteration" type="integer" optional="true" min="1" value="10" label="maximal number of iterations for the fitting step" help=""/> | 82 <param name="max_iteration" argument="-algorithm:deconvolution:fitting:max_iteration" type="integer" min="1" value="10" label="maximal number of iterations for the fitting step" help=""/> |
84 <section name="penalties" title="" help="" expanded="false"> | 83 <section name="penalties" title="" help="" expanded="false"> |
85 <param name="position" argument="-algorithm:deconvolution:fitting:penalties:position" type="float" optional="true" min="0.0" 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=""/> | 84 <param name="position" argument="-algorithm:deconvolution:fitting:penalties:position" type="float" min="0.0" 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=""/> |
86 <param name="height" argument="-algorithm:deconvolution:fitting:penalties:height" type="float" optional="true" min="0.0" value="1.0" label="penalty term for the fitting of the intensity:If it gets negative during the fitting it can be penalized" help=""/> | 85 <param name="height" argument="-algorithm:deconvolution:fitting:penalties:height" type="float" min="0.0" value="1.0" label="penalty term for the fitting of the intensity:If it gets negative during the fitting it can be penalized" help=""/> |
87 <param name="left_width" argument="-algorithm:deconvolution:fitting:penalties:left_width" type="float" optional="true" min="0.0" 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=""/> | 86 <param name="left_width" argument="-algorithm:deconvolution:fitting:penalties:left_width" type="float" min="0.0" 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=""/> |
88 <param name="right_width" argument="-algorithm:deconvolution:fitting:penalties:right_width" type="float" optional="true" min="0.0" 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=""/> | 87 <param name="right_width" argument="-algorithm:deconvolution:fitting:penalties:right_width" type="float" min="0.0" 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=""/> |
89 </section> | 88 </section> |
90 </section> | 89 </section> |
91 </section> | 90 </section> |
92 <section name="SignalToNoiseEstimationParameter" title="" help="" expanded="false"> | 91 <section name="SignalToNoiseEstimationParameter" title="" help="" expanded="false"> |
93 <param name="max_intensity" argument="-algorithm:SignalToNoiseEstimationParameter:max_intensity" type="integer" optional="true" min="-1" value="-1" label="maximal intensity considered for histogram construction" help="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)"/> | 92 <param name="max_intensity" argument="-algorithm:SignalToNoiseEstimationParameter:max_intensity" type="integer" min="-1" value="-1" label="maximal intensity considered for histogram construction" help="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)"/> |
94 <param name="auto_max_stdev_factor" argument="-algorithm:SignalToNoiseEstimationParameter:auto_max_stdev_factor" type="float" optional="true" min="0.0" max="999.0" value="3.0" label="parameter for 'max_intensity' estimation (if 'auto_mode' == 0): mean + 'auto_max_stdev_factor' * stdev" help=""/> | 93 <param name="auto_max_stdev_factor" argument="-algorithm:SignalToNoiseEstimationParameter:auto_max_stdev_factor" type="float" min="0.0" max="999.0" value="3.0" label="parameter for 'max_intensity' estimation (if 'auto_mode' == 0): mean + 'auto_max_stdev_factor' * stdev" help=""/> |
95 <param name="auto_max_percentile" argument="-algorithm:SignalToNoiseEstimationParameter:auto_max_percentile" type="integer" optional="true" min="0" max="100" value="95" label="parameter for 'max_intensity' estimation (if 'auto_mode' == 1): auto_max_percentile th percentile" help=""/> | 94 <param name="auto_max_percentile" argument="-algorithm:SignalToNoiseEstimationParameter:auto_max_percentile" type="integer" min="0" max="100" value="95" label="parameter for 'max_intensity' estimation (if 'auto_mode' == 1): auto_max_percentile th percentile" help=""/> |
96 <param name="auto_mode" argument="-algorithm:SignalToNoiseEstimationParameter:auto_mode" type="integer" optional="true" min="-1" max="1" value="0" label="method to use to determine maximal intensity: -1 --> use 'max_intensity'; 0 --> 'auto_max_stdev_factor' method (default); 1 --> 'auto_max_percentile' method" help=""/> | 95 <param name="auto_mode" argument="-algorithm:SignalToNoiseEstimationParameter:auto_mode" type="integer" min="-1" max="1" value="0" label="method to use to determine maximal intensity: -1 --> use 'max_intensity'; 0 --> 'auto_max_stdev_factor' method (default); 1 --> 'auto_max_percentile' method" help=""/> |
97 <param name="win_len" argument="-algorithm:SignalToNoiseEstimationParameter:win_len" type="float" optional="true" min="1.0" value="200.0" label="window length in Thomson" help=""/> | 96 <param name="win_len" argument="-algorithm:SignalToNoiseEstimationParameter:win_len" type="float" min="1.0" value="200.0" label="window length in Thomson" help=""/> |
98 <param name="bin_count" argument="-algorithm:SignalToNoiseEstimationParameter:bin_count" type="integer" optional="true" min="3" value="30" label="number of bins for intensity values" help=""/> | 97 <param name="bin_count" argument="-algorithm:SignalToNoiseEstimationParameter:bin_count" type="integer" min="3" value="30" label="number of bins for intensity values" help=""/> |
99 <param name="stdev_mp" argument="-algorithm:SignalToNoiseEstimationParameter:stdev_mp" type="float" optional="true" min="0.01" max="999.0" value="3.0" label="multiplier for stdev" help=""/> | 98 <param name="stdev_mp" argument="-algorithm:SignalToNoiseEstimationParameter:stdev_mp" type="float" min="0.01" max="999.0" value="3.0" label="multiplier for stdev" help=""/> |
100 <param name="min_required_elements" argument="-algorithm:SignalToNoiseEstimationParameter:min_required_elements" type="integer" optional="true" min="1" value="10" label="minimum number of elements required in a window (otherwise it is considered sparse)" help=""/> | 99 <param name="min_required_elements" argument="-algorithm:SignalToNoiseEstimationParameter:min_required_elements" type="integer" min="1" value="10" label="minimum number of elements required in a window (otherwise it is considered sparse)" help=""/> |
101 <param name="noise_for_empty_window" argument="-algorithm:SignalToNoiseEstimationParameter:noise_for_empty_window" type="float" optional="true" value="1e+20" label="noise value used for sparse windows" help=""/> | 100 <param name="noise_for_empty_window" argument="-algorithm:SignalToNoiseEstimationParameter:noise_for_empty_window" type="float" value="1e+20" label="noise value used for sparse windows" help=""/> |
102 </section> | 101 </section> |
103 </section> | 102 </section> |
104 <expand macro="adv_opts_macro"> | 103 <expand macro="adv_opts_macro"> |
105 <param argument="-write_peak_meta_data" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Write additional information about the picked peaks (maximal intensity, left and right area...) into the mzML-file" help="Attention: this can blow up files, since seven arrays are stored per spectrum!"/> | 104 <param argument="-write_peak_meta_data" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Write additional information about the picked peaks (maximal intensity, left and right area...) into the mzML-file" help="Attention: this can blow up files, since seven arrays are stored per spectrum!"/> |
106 <param argument="-force" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Overrides tool-specific checks" help=""/> | 105 <param argument="-force" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Overrides tool-specific checks" help=""/> |
107 <param argument="-test" type="hidden" optional="true" value="False" label="Enables the test mode (needed for internal use only)" help=""> | 106 <param argument="-test" type="hidden" value="False" label="Enables the test mode (needed for internal use only)" help="" optional="true"> |
108 <expand macro="list_string_san" name="test"/> | 107 <expand macro="list_string_san" name="test"/> |
109 </param> | 108 </param> |
110 </expand> | 109 </expand> |
111 <param name="OPTIONAL_OUTPUTS" type="select" optional="true" multiple="true" label="Optional outputs"> | 110 <param name="OPTIONAL_OUTPUTS" type="select" optional="true" multiple="true" label="Optional outputs"> |
112 <option value="ctd_out_FLAG">Output used ctd (ini) configuration file</option> | 111 <option value="ctd_out_FLAG">Output used ctd (ini) configuration file</option> |
116 <data name="out" label="${tool.name} on ${on_string}: out" format="mzml"/> | 115 <data name="out" label="${tool.name} on ${on_string}: out" format="mzml"/> |
117 <data name="ctd_out" format="xml" label="${tool.name} on ${on_string}: ctd"> | 116 <data name="ctd_out" format="xml" label="${tool.name} on ${on_string}: ctd"> |
118 <filter>OPTIONAL_OUTPUTS is not None and "ctd_out_FLAG" in OPTIONAL_OUTPUTS</filter> | 117 <filter>OPTIONAL_OUTPUTS is not None and "ctd_out_FLAG" in OPTIONAL_OUTPUTS</filter> |
119 </data> | 118 </data> |
120 </outputs> | 119 </outputs> |
121 <tests><!-- TOPP_PeakPickerWavelet_1 --> | 120 <tests> |
121 <!-- TOPP_PeakPickerWavelet_1 --> | |
122 <test expect_num_outputs="2"> | 122 <test expect_num_outputs="2"> |
123 <section name="adv_opts"> | 123 <section name="adv_opts"> |
124 <param name="write_peak_meta_data" value="true"/> | 124 <param name="write_peak_meta_data" value="true"/> |
125 <param name="force" value="false"/> | 125 <param name="force" value="false"/> |
126 <param name="test" value="true"/> | 126 <param name="test" value="true"/> |
127 </section> | 127 </section> |
128 <param name="in" value="PeakPickerWavelet_input.mzML"/> | 128 <param name="in" value="PeakPickerWavelet_input.mzML"/> |
129 <output name="out" file="PeakPickerWavelet_output.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> | 129 <output name="out" value="PeakPickerWavelet_output.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> |
130 <section name="algorithm"> | 130 <section name="algorithm"> |
131 <param name="signal_to_noise" value="3.0"/> | 131 <param name="signal_to_noise" value="3.0"/> |
132 <param name="centroid_percentage" value="0.6"/> | 132 <param name="centroid_percentage" value="0.6"/> |
133 <param name="peak_width" value="0.2"/> | 133 <param name="peak_width" value="0.2"/> |
134 <param name="estimate_peak_width" value="false"/> | 134 <param name="estimate_peak_width" value="false"/> |
192 <output name="ctd_out" ftype="xml"> | 192 <output name="ctd_out" ftype="xml"> |
193 <assert_contents> | 193 <assert_contents> |
194 <is_valid_xml/> | 194 <is_valid_xml/> |
195 </assert_contents> | 195 </assert_contents> |
196 </output> | 196 </output> |
197 <assert_stdout> | |
198 <has_text_matching expression="@EXECUTABLE@ took .* \(wall\), .* \(CPU\), .* \(system\), .* \(user\)(; Peak Memory Usage: 32 MB)?."/> | |
199 </assert_stdout> | |
197 </test> | 200 </test> |
198 <!-- TOPP_PeakPickerWavelet_2 --> | 201 <!-- TOPP_PeakPickerWavelet_2 --> |
199 <test expect_num_outputs="2"> | 202 <test expect_num_outputs="2"> |
200 <section name="adv_opts"> | 203 <section name="adv_opts"> |
201 <param name="write_peak_meta_data" value="true"/> | 204 <param name="write_peak_meta_data" value="true"/> |
202 <param name="force" value="false"/> | 205 <param name="force" value="false"/> |
203 <param name="test" value="true"/> | 206 <param name="test" value="true"/> |
204 </section> | 207 </section> |
205 <param name="in" value="PeakPickerWavelet_deconv_input.mzML"/> | 208 <param name="in" value="PeakPickerWavelet_deconv_input.mzML"/> |
206 <output name="out" file="PeakPickerWavelet_deconv_output.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> | 209 <output name="out" value="PeakPickerWavelet_deconv_output.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> |
207 <section name="algorithm"> | 210 <section name="algorithm"> |
208 <param name="signal_to_noise" value="2.0"/> | 211 <param name="signal_to_noise" value="2.0"/> |
209 <param name="centroid_percentage" value="0.8"/> | 212 <param name="centroid_percentage" value="0.8"/> |
210 <param name="peak_width" value="0.15"/> | 213 <param name="peak_width" value="0.15"/> |
211 <param name="estimate_peak_width" value="false"/> | 214 <param name="estimate_peak_width" value="false"/> |
269 <output name="ctd_out" ftype="xml"> | 272 <output name="ctd_out" ftype="xml"> |
270 <assert_contents> | 273 <assert_contents> |
271 <is_valid_xml/> | 274 <is_valid_xml/> |
272 </assert_contents> | 275 </assert_contents> |
273 </output> | 276 </output> |
277 <assert_stdout> | |
278 <has_text_matching expression="@EXECUTABLE@ took .* \(wall\), .* \(CPU\), .* \(system\), .* \(user\)(; Peak Memory Usage: 32 MB)?."/> | |
279 </assert_stdout> | |
274 </test> | 280 </test> |
275 <!-- TOPP_PeakPickerWavelet_4 --> | 281 <!-- TOPP_PeakPickerWavelet_4 --> |
276 <test expect_num_outputs="2"> | 282 <test expect_num_outputs="2"> |
277 <section name="adv_opts"> | 283 <section name="adv_opts"> |
278 <param name="write_peak_meta_data" value="true"/> | 284 <param name="write_peak_meta_data" value="true"/> |
279 <param name="force" value="false"/> | 285 <param name="force" value="false"/> |
280 <param name="test" value="true"/> | 286 <param name="test" value="true"/> |
281 </section> | 287 </section> |
282 <param name="in" value="PeakPickerWavelet_input.mzML"/> | 288 <param name="in" value="PeakPickerWavelet_input.mzML"/> |
283 <output name="out" file="PeakPickerWavelet_output.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> | 289 <output name="out" value="PeakPickerWavelet_output.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> |
284 <section name="algorithm"> | 290 <section name="algorithm"> |
285 <param name="signal_to_noise" value="3.0"/> | 291 <param name="signal_to_noise" value="3.0"/> |
286 <param name="centroid_percentage" value="0.6"/> | 292 <param name="centroid_percentage" value="0.6"/> |
287 <param name="peak_width" value="0.2"/> | 293 <param name="peak_width" value="0.2"/> |
288 <param name="estimate_peak_width" value="false"/> | 294 <param name="estimate_peak_width" value="false"/> |
346 <output name="ctd_out" ftype="xml"> | 352 <output name="ctd_out" ftype="xml"> |
347 <assert_contents> | 353 <assert_contents> |
348 <is_valid_xml/> | 354 <is_valid_xml/> |
349 </assert_contents> | 355 </assert_contents> |
350 </output> | 356 </output> |
357 <assert_stdout> | |
358 <has_text_matching expression="@EXECUTABLE@ took .* \(wall\), .* \(CPU\), .* \(system\), .* \(user\)(; Peak Memory Usage: 32 MB)?."/> | |
359 </assert_stdout> | |
351 </test> | 360 </test> |
352 <!-- TOPP_PeakPickerWavelet_5 --> | 361 <!-- TOPP_PeakPickerWavelet_5 --> |
353 <test expect_num_outputs="2"> | 362 <test expect_num_outputs="2"> |
354 <section name="adv_opts"> | 363 <section name="adv_opts"> |
355 <param name="write_peak_meta_data" value="false"/> | 364 <param name="write_peak_meta_data" value="false"/> |
356 <param name="force" value="false"/> | 365 <param name="force" value="false"/> |
357 <param name="test" value="true"/> | 366 <param name="test" value="true"/> |
358 </section> | 367 </section> |
359 <param name="in" value="PeakPickerWavelet_input.mzML"/> | 368 <param name="in" value="PeakPickerWavelet_input.mzML"/> |
360 <output name="out" file="PeakPickerWavelet_output_noMetaData.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> | 369 <output name="out" value="PeakPickerWavelet_output_noMetaData.mzML" compare="sim_size" delta_frac="0.7" ftype="mzml"/> |
361 <section name="algorithm"> | 370 <section name="algorithm"> |
362 <param name="signal_to_noise" value="3.0"/> | 371 <param name="signal_to_noise" value="3.0"/> |
363 <param name="centroid_percentage" value="0.6"/> | 372 <param name="centroid_percentage" value="0.6"/> |
364 <param name="peak_width" value="0.2"/> | 373 <param name="peak_width" value="0.2"/> |
365 <param name="estimate_peak_width" value="false"/> | 374 <param name="estimate_peak_width" value="false"/> |
423 <output name="ctd_out" ftype="xml"> | 432 <output name="ctd_out" ftype="xml"> |
424 <assert_contents> | 433 <assert_contents> |
425 <is_valid_xml/> | 434 <is_valid_xml/> |
426 </assert_contents> | 435 </assert_contents> |
427 </output> | 436 </output> |
437 <assert_stdout> | |
438 <has_text_matching expression="@EXECUTABLE@ took .* \(wall\), .* \(CPU\), .* \(system\), .* \(user\)(; Peak Memory Usage: 32 MB)?."/> | |
439 </assert_stdout> | |
428 </test> | 440 </test> |
429 </tests> | 441 </tests> |
430 <help><![CDATA[Finds mass spectrometric peaks in profile mass spectra. | 442 <help><![CDATA[Finds mass spectrometric peaks in profile mass spectra. |
431 | 443 |
432 | 444 |
433 For more information, visit http://www.openms.de/doxygen/release/2.8.0/html/TOPP_PeakPickerWavelet.html]]></help> | 445 For more information, visit https://openms.de/doxygen/release/3.1.0/html/TOPP_PeakPickerWavelet.html]]></help> |
434 <expand macro="references"/> | 446 <expand macro="references"/> |
435 </tool> | 447 </tool> |