comparison AccurateMassSearch.xml @ 0:9c63c85a3cf5 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:24:55 -0500
parents
children 79017f4e6ead
comparison
equal deleted inserted replaced
-1:000000000000 0:9c63c85a3cf5
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: [Utilities]-->
4 <tool id="AccurateMassSearch" name="AccurateMassSearch" version="2.1.0">
5 <description>Find potential HMDB ids within the given mass error window.</description>
6 <macros>
7 <token name="@EXECUTABLE@">AccurateMassSearch</token>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="references"/>
11 <expand macro="stdio"/>
12 <expand macro="requirements"/>
13 <command>AccurateMassSearch
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_out_annotation:
22 -out_annotation $param_out_annotation
23 #end if
24 #if $param_positive_adducts_file:
25 -positive_adducts_file $param_positive_adducts_file
26 #end if
27 #if $param_negative_adducts_file:
28 -negative_adducts_file $param_negative_adducts_file
29 #end if
30 -db:mapping
31 #for token in $param_db_mapping:
32 $token
33 #end for
34 -db:struct
35 #for token in $param_db_struct:
36 $token
37 #end for
38 #if $param_algorithm_mass_error_value:
39 -algorithm:mass_error_value $param_algorithm_mass_error_value
40 #end if
41 #if $param_algorithm_mass_error_unit:
42 -algorithm:mass_error_unit $param_algorithm_mass_error_unit
43 #end if
44 #if $param_algorithm_ionization_mode:
45 -algorithm:ionization_mode $param_algorithm_ionization_mode
46 #end if
47 #if $param_algorithm_isotopic_similarity:
48 -algorithm:isotopic_similarity
49 #end if
50 #if $param_algorithm_keep_unidentified_masses:
51 -algorithm:keep_unidentified_masses
52 #end if
53 #if $param_algorithm_mzTab_exportIsotopeIntensities:
54 -algorithm:mzTab:exportIsotopeIntensities $param_algorithm_mzTab_exportIsotopeIntensities
55 #end if
56 #if $adv_opts.adv_opts_selector=='advanced':
57 #if $adv_opts.param_force:
58 -force
59 #end if
60 #end if
61 </command>
62 <inputs>
63 <param name="param_in" type="data" format="featurexml,consensusxml" optional="False" label="featureXML or consensusXML file" help="(-in) "/>
64 <param name="param_positive_adducts_file" type="data" format="tabular" optional="False" value="CHEMISTRY/PositiveAdducts.tsv" label="This file contains the list of potential positive adducts that will be looked for in the database" help="(-positive_adducts_file) Edit the list if you wish to exclude/include adducts. By default CHEMISTRY/PositiveAdducts.tsv in OpenMS/share is used! If empty, the default will be used"/>
65 <param name="param_negative_adducts_file" type="data" format="tabular" optional="False" value="CHEMISTRY/NegativeAdducts.tsv" label="This file contains the list of potential negative adducts that will be looked for in the database" help="(-negative_adducts_file) Edit the list if you wish to exclude/include adducts. By default CHEMISTRY/NegativeAdducts.tsv in OpenMS/share is used! If empty, the default will be used"/>
66 <param name="param_db_mapping" type="data" format="tabular" multiple="true" optional="False" size="30" value="CHEMISTRY/HMDBMappingFile.tsv" label="Database input file(s), containing three tab-separated columns of mass, formula, identifie" help="(-mapping) If 'mass' is 0, it is re-computed from the molecular sum formula. By default CHEMISTRY/HMDBMappingFile.tsv in OpenMS/share is used! If empty, the default will be used">
67 <sanitizer>
68 <valid initial="string.printable">
69 <remove value="'"/>
70 <remove value="&quot;"/>
71 </valid>
72 </sanitizer>
73 </param>
74 <param name="param_db_struct" type="data" format="tabular" multiple="true" optional="False" size="30" value="CHEMISTRY/HMDB2StructMapping.tsv" label="Database input file(s), containing four tab-separated columns of identifier, name, SMILES, INCHI.The identifier should match with mapping file" help="(-struct) SMILES and INCHI are reported in the output, but not used otherwise. By default CHEMISTRY/HMDB2StructMapping.tsv in OpenMS/share is used! If empty, the default will be used">
75 <sanitizer>
76 <valid initial="string.printable">
77 <remove value="'"/>
78 <remove value="&quot;"/>
79 </valid>
80 </sanitizer>
81 </param>
82 <param name="param_algorithm_mass_error_value" type="float" value="5.0" label="Tolerance allowed for accurate mass search" help="(-mass_error_value) "/>
83 <param name="param_algorithm_mass_error_unit" display="radio" type="select" optional="False" value="ppm" label="Unit of mass error (ppm or Da)" help="(-mass_error_unit) ">
84 <option value="ppm" selected="true">ppm</option>
85 <option value="Da">Da</option>
86 </param>
87 <param name="param_algorithm_ionization_mode" display="radio" type="select" optional="False" value="positive" label="Positive or negative ionization mode?" help="(-ionization_mode) If 'auto' is used, the first feature of the input map must contain the meta-value 'scan_polarity'. If its missing, the tool will exit with error">
88 <option value="positive" selected="true">positive</option>
89 <option value="negative">negative</option>
90 <option value="auto">auto</option>
91 </param>
92 <param name="param_algorithm_isotopic_similarity" display="radio" type="boolean" truevalue="-algorithm:isotopic_similarity" falsevalue="" checked="false" optional="True" label="Computes a similarity score for each hit (only if the feature exhibits at least two isotopic mass traces)" help="(-isotopic_similarity) "/>
93 <param name="param_algorithm_keep_unidentified_masses" display="radio" type="boolean" truevalue="-algorithm:keep_unidentified_masses" falsevalue="" checked="false" optional="True" label="Keep features that did not yield any DB hit" help="(-keep_unidentified_masses) "/>
94 <param name="param_algorithm_mzTab_exportIsotopeIntensities" type="integer" min="0" optional="True" value="0" label="[featureXML input only] Number of extra columns in mzTab output, which provide intensities up to the x'th isotope" help="(-exportIsotopeIntensities) '0' to deactivate, '1' for monoisotopic peak, etc. If a feature does not have a certain isotope, 'null' will be reported"/>
95 <expand macro="advanced_options">
96 <param name="param_force" display="radio" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
97 </expand>
98 </inputs>
99 <outputs>
100 <data name="param_out" format="tabular"/>
101 <data name="param_out_annotation" metadata_source="param_in" format="input"/>
102 </outputs>
103 <help>Find potential HMDB ids within the given mass error window.
104
105
106 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_AccurateMassSearch.html</help>
107 </tool>