Mercurial > repos > galaxyp > openms_featurefindermrm
comparison FeatureFinderMRM.xml @ 11:90f3670ec66b draft
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit ddf41e8bda1ba065f5cdec98e93dee8165ffc1b9"
author | galaxyp |
---|---|
date | Thu, 27 Aug 2020 19:41:29 -0400 |
parents | d0e82da46b78 |
children | 9a9bbeefcd5d |
comparison
equal
deleted
inserted
replaced
10:7fe5c451e82a | 11:90f3670ec66b |
---|---|
1 <?xml version='1.0' encoding='UTF-8'?> | 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.--> | 2 <!--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: [Quantitation]--> | 3 <!--Proposed Tool Section: [Quantitation]--> |
4 <tool id="FeatureFinderMRM" name="FeatureFinderMRM" version="2.3.0"> | 4 <tool id="FeatureFinderMRM" name="FeatureFinderMRM" version="@TOOL_VERSION@+galaxy@GALAXY_VERSION@" profile="20.05"> |
5 <description>Detects two-dimensional features in LC-MS data.</description> | 5 <description>Detects two-dimensional features in LC-MS data.</description> |
6 <macros> | 6 <macros> |
7 <token name="@EXECUTABLE@">FeatureFinderMRM</token> | 7 <token name="@EXECUTABLE@">FeatureFinderMRM</token> |
8 <import>macros.xml</import> | 8 <import>macros.xml</import> |
9 <import>macros_autotest.xml</import> | |
10 <import>macros_test.xml</import> | |
9 </macros> | 11 </macros> |
10 <expand macro="references"/> | 12 <expand macro="requirements"/> |
11 <expand macro="stdio"/> | 13 <expand macro="stdio"/> |
12 <expand macro="requirements"/> | 14 <command detect_errors="exit_code"><![CDATA[@QUOTE_FOO@ |
13 <command detect_errors="aggressive"><![CDATA[FeatureFinderMRM | 15 @EXT_FOO@ |
16 #import re | |
14 | 17 |
15 #if $param_in: | 18 ## Preprocessing |
16 -in $param_in | 19 mkdir in && |
17 #end if | 20 ln -s '$in' 'in/${re.sub("[^\w\-_]", "_", $in.element_identifier)}.$gxy2omsext($in.ext)' && |
18 #if $param_out: | 21 mkdir out && |
19 -out $param_out | 22 |
20 #end if | 23 ## Main program call |
21 #if $param_algorithm_min_rt_distance: | 24 |
22 -algorithm:min_rt_distance $param_algorithm_min_rt_distance | 25 set -o pipefail && |
23 #end if | 26 @EXECUTABLE@ -write_ctd ./ && |
24 #if $param_algorithm_min_signal_to_noise_ratio: | 27 python3 '$__tool_directory__/fill_ctd.py' '@EXECUTABLE@.ctd' '$args_json' '$hardcoded_json' && |
25 -algorithm:min_signal_to_noise_ratio $param_algorithm_min_signal_to_noise_ratio | 28 @EXECUTABLE@ -ini @EXECUTABLE@.ctd |
26 #end if | 29 -in |
27 #if $adv_opts.adv_opts_selector=='advanced': | 30 'in/${re.sub("[^\w\-_]", "_", $in.element_identifier)}.$gxy2omsext($in.ext)' |
28 #if $adv_opts.param_force: | 31 -out |
29 -force | 32 'out/output.${gxy2omsext("featurexml")}' |
30 #end if | 33 |
31 #if $adv_opts.param_algorithm_min_num_peaks_per_feature: | 34 ## Postprocessing |
32 -algorithm:min_num_peaks_per_feature $adv_opts.param_algorithm_min_num_peaks_per_feature | 35 && mv 'out/output.${gxy2omsext("featurexml")}' '$out' |
33 #end if | 36 #if "ctd_out_FLAG" in $OPTIONAL_OUTPUTS |
34 #if $adv_opts.param_algorithm_write_debug_files: | 37 && mv '@EXECUTABLE@.ctd' '$ctd_out' |
35 -algorithm:write_debug_files | 38 #end if]]></command> |
36 #end if | 39 <configfiles> |
37 #if $adv_opts.param_algorithm_resample_traces: | 40 <inputs name="args_json" data_style="paths"/> |
38 -algorithm:resample_traces | 41 <configfile name="hardcoded_json"><![CDATA[{"log": "log.txt", "threads": "\${GALAXY_SLOTS:-1}", "no_progress": true}]]></configfile> |
39 #end if | 42 </configfiles> |
40 #if $adv_opts.param_algorithm_write_debuginfo: | |
41 -algorithm:write_debuginfo | |
42 #end if | |
43 #end if | |
44 ]]></command> | |
45 <inputs> | 43 <inputs> |
46 <param name="param_in" type="data" format="mzml" optional="False" label="input file" help="(-in) "/> | 44 <param name="in" argument="-in" type="data" format="mzml" optional="false" label="input file" help=" select mzml data sets(s)"/> |
47 <param name="param_algorithm_min_rt_distance" type="float" min="0.0" optional="True" value="10.0" label="Minimal distance of MRM features in seconds" help="(-min_rt_distance) "/> | 45 <section name="algorithm" title="Algorithm section" help="" expanded="false"> |
48 <param name="param_algorithm_min_signal_to_noise_ratio" type="float" min="0.0" optional="True" value="2.0" label="Minimal S/N ratio a peak must have to be taken into account" help="(-min_signal_to_noise_ratio) Set to zero if the MRM-traces contains mostly signals, and no noise"/> | 46 <param name="min_rt_distance" argument="-algorithm:min_rt_distance" type="float" optional="true" min="0.0" value="10.0" label="Minimal distance of MRM features in seconds" help=""/> |
49 <expand macro="advanced_options"> | 47 <param name="min_num_peaks_per_feature" argument="-algorithm:min_num_peaks_per_feature" type="integer" optional="true" min="1" value="5" label="Minimal number of peaks which are needed for a single feature" help=""/> |
50 <param name="param_force" display="radio" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/> | 48 <param name="min_signal_to_noise_ratio" argument="-algorithm:min_signal_to_noise_ratio" type="float" optional="true" min="0.0" value="2.0" label="Minimal S/N ratio a peak must have to be taken into account" help="Set to zero if the MRM-traces contains mostly signals, and no noise"/> |
51 <param name="param_algorithm_min_num_peaks_per_feature" type="integer" min="1" optional="True" value="5" label="Minimal number of peaks which are needed for a single feature" help="(-min_num_peaks_per_feature) "/> | 49 <param name="write_debug_files" argument="-algorithm:write_debug_files" type="boolean" truevalue="true" falsevalue="false" checked="false" label="If set to true, for each feature a plot will be created, in the subdirectory 'debug'" help=""/> |
52 <param name="param_algorithm_write_debug_files" display="radio" type="boolean" truevalue="-algorithm:write_debug_files" falsevalue="" checked="false" optional="True" label="If set to true, for each feature a plot will be created, in the subdirectory 'debug'" help="(-write_debug_files) "/> | 50 <param name="resample_traces" argument="-algorithm:resample_traces" type="boolean" truevalue="true" falsevalue="false" checked="false" label="If set to true, each trace, which is in this case a part of the MRM monitoring trace with signal is resampled, using the minimal distance of two data points in RT dimension" help=""/> |
53 <param name="param_algorithm_resample_traces" display="radio" type="boolean" truevalue="-algorithm:resample_traces" falsevalue="" checked="false" optional="True" label="If set to true, each trace, which is in this case a part of the MRM monitoring trace with signal is resampled, using the minimal distance of two data points in RT dimension" help="(-resample_traces) "/> | 51 <param name="write_debuginfo" argument="-algorithm:write_debuginfo" type="boolean" truevalue="true" falsevalue="false" checked="false" label="If set to true, debug messages are written, the output can be somewhat lengthy" help=""/> |
54 <param name="param_algorithm_write_debuginfo" display="radio" type="boolean" truevalue="-algorithm:write_debuginfo" falsevalue="" checked="false" optional="True" label="If set to true, debug messages are written, the output can be somewhat lengthy" help="(-write_debuginfo) "/> | 52 </section> |
53 <expand macro="adv_opts_macro"> | |
54 <param name="force" argument="-force" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Overwrite tool specific checks" help=""/> | |
55 <param name="test" argument="-test" type="hidden" optional="true" value="False" label="Enables the test mode (needed for internal use only)" help=""> | |
56 <expand macro="list_string_san"/> | |
57 </param> | |
55 </expand> | 58 </expand> |
59 <param name="OPTIONAL_OUTPUTS" type="select" multiple="true" label="Optional outputs" optional="true"> | |
60 <option value="ctd_out_FLAG">Output used ctd (ini) configuration file</option> | |
61 </param> | |
56 </inputs> | 62 </inputs> |
57 <outputs> | 63 <outputs> |
58 <data name="param_out" format="featurexml"/> | 64 <data name="out" label="${tool.name} on ${on_string}: out" format="featurexml"/> |
65 <data name="ctd_out" format="xml" label="${tool.name} on ${on_string}: ctd"> | |
66 <filter>OPTIONAL_OUTPUTS is not None and "ctd_out_FLAG" in OPTIONAL_OUTPUTS</filter> | |
67 </data> | |
59 </outputs> | 68 </outputs> |
60 <help>Detects two-dimensional features in LC-MS data. | 69 <tests> |
70 <expand macro="autotest_FeatureFinderMRM"/> | |
71 <expand macro="manutest_FeatureFinderMRM"/> | |
72 </tests> | |
73 <help><![CDATA[Detects two-dimensional features in LC-MS data. | |
61 | 74 |
62 | 75 |
63 For more information, visit https://abibuilder.informatik.uni-tuebingen.de/archive/openms/Documentation/release/2.3.0/html/TOPP_FeatureFinderMRM.html</help> | 76 For more information, visit http://www.openms.de/documentation/TOPP_FeatureFinderMRM.html]]></help> |
77 <expand macro="references"/> | |
64 </tool> | 78 </tool> |