comparison ConvertTSVToTraML.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="ConvertTSVToTraML" name="ConvertTSVToTraML" 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>Converts an OpenSWATH transition TSV file to a TraML file</description> 3 <!--Proposed Tool Section: [Targeted Experiments]-->
4 <macros> 4 <tool id="ConvertTSVToTraML" name="ConvertTSVToTraML" version="2.0.0">
5 <token name="@EXECUTABLE@">ConvertTSVToTraML</token> 5 <description>Converts an OpenSWATH transition TSV file to a TraML file</description>
6 <import>macros.xml</import> 6 <macros>
7 </macros> 7 <token name="@EXECUTABLE@">ConvertTSVToTraML</token>
8 <expand macro="stdio"/> 8 <import>macros.xml</import>
9 <expand macro="requirements"/> 9 </macros>
10 <command>ConvertTSVToTraML 10 <expand macro="references"/>
11 <expand macro="stdio"/>
12 <expand macro="requirements"/>
13 <command>ConvertTSVToTraML
11 14
12 -in ${param_in} 15 #if $param_in:
13 -in_type ${param_in_type} 16 -in $param_in
14 -out ${param_out} 17 #end if
15 -threads \${GALAXY_SLOTS:-24} 18 #if $param_out:
19 -out $param_out
20 #end if
21 -threads \${GALAXY_SLOTS:-24}
16 #if $adv_opts.adv_opts_selector=='advanced': 22 #if $adv_opts.adv_opts_selector=='advanced':
17 -algorithm:retentionTimeInterpretation ${adv_opts.param_retentionTimeInterpretation} 23 #if $adv_opts.param_force:
18 ${adv_opts.param_override_group_label_check} 24 -force
25 #end if
26 #if $adv_opts.param_algorithm_retentionTimeInterpretation:
27 -algorithm:retentionTimeInterpretation
28 #if &quot; &quot; in str($adv_opts.param_algorithm_retentionTimeInterpretation):
29 &quot;$adv_opts.param_algorithm_retentionTimeInterpretation&quot;
30 #else
31 $adv_opts.param_algorithm_retentionTimeInterpretation
32 #end if
33 #end if
34 #if $adv_opts.param_algorithm_override_group_label_check:
35 -algorithm:override_group_label_check
36 #end if
19 #end if 37 #end if
20 </command> 38 </command>
21 <inputs> 39 <inputs>
22 <param name="param_in" type="data" format="tabular" optional="False" label="Input OpenSWATH transition TSV file or SpectraST MRM file.#br# See http://www.openms.de/current_doxygen/html/UTILS_ConvertTSVToTraML.html for format." help="(-in)"/> 40 <param format="tabular" help="(-in) &lt;br&gt; See http://www.openms.de/current_doxygen/html/UTILS_ConvertTSVToTraML.html for format" label="Input OpenSWATH transition TSV file or SpectraST MRM file" name="param_in" optional="False" type="data"/>
23 <param name="param_in_type" type="select" optional="True" label="input file type -- default: determined from file extension or content#br#" help="(-in_type)"> 41 <expand macro="advanced_options">
24 <option value="tsv">tsv</option> 42 <param checked="false" falsevalue="" help="(-force) " label="Overwrite tool specific checks" name="param_force" optional="True" truevalue="-force" type="boolean"/>
25 <option value="csv">csv</option> 43 <param help="(-retentionTimeInterpretation) " label="How to interpret the provided retention time (the retention time column can either be interpreted to be in iRT, minutes or seconds)" name="param_algorithm_retentionTimeInterpretation" optional="True" type="select" value="iRT">
26 <option value="mrm">mrm</option> 44 <option value="iRT">iRT</option>
27 </param> 45 <option value="seconds">seconds</option>
28 <expand macro="advanced_options"> 46 <option value="minutes">minutes</option>
29 <param name="param_retentionTimeInterpretation" type="select" optional="True" value="iRT" label="How to interpret the provided retention time (the retention time column can either be interpreted to be in iRT, minutes or seconds)" help="(-retentionTimeInterpretation)"> 47 </param>
30 <option value="iRT">iRT</option> 48 <param checked="false" falsevalue="" help="(-override_group_label_check) Only turn this off if you know what you are doing" label="Override an internal check that assures that all members of the same PeptideGroupLabel have the same PeptideSequence (this ensures that only different isotopic forms of the same peptide can be grouped together in the same label group)" name="param_algorithm_override_group_label_check" optional="True" truevalue="-algorithm:override_group_label_check" type="boolean"/>
31 <option value="seconds">seconds</option> 49 </expand>
32 <option value="minutes">minutes</option> 50 </inputs>
33 </param> 51 <outputs>
34 <param name="param_override_group_label_check" type="boolean" truevalue="-algorithm:override_group_label_check true" falsevalue="-algorithm:override_group_label_check false" checked="false" optional="True" label="Override an internal check that assures that all members of the same PeptideGroupLabel have the same PeptideSequence (this ensures that only different isotopic forms of the same peptide can be grouped together in the same label group). Only turn this off if you know what you are doing." help="(-override_group_label_check)"/> 52 <data format="traml" name="param_out"/>
35 </expand> 53 </outputs>
36 </inputs> 54 <help>Converts an OpenSWATH transition TSV file to a TraML file
37 <outputs>
38 <data name="param_out" label="Output TraML file" format="data"/>
39 </outputs>
40 <help>**What it does**
41
42 Converts an OpenSWATH transition TSV file to a TraML file
43 55
44 56
45 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_ConvertTSVToTraML.html 57 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_ConvertTSVToTraML.html</help>
46 58 </tool>
47 @REFERENCES@
48 </help>
49 </tool>