comparison IDExtractor.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="IDExtractor" name="IDExtractor" 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>Extracts 'n' peptides randomly or best 'n' from idXML files.</description> 3 <!--Proposed Tool Section: [Utilities]-->
4 <macros> 4 <tool id="IDExtractor" name="IDExtractor" version="2.0.0">
5 <token name="@EXECUTABLE@">IDExtractor</token> 5 <description>Extracts 'n' peptides randomly or best 'n' from idXML files.</description>
6 <import>macros.xml</import> 6 <macros>
7 </macros> 7 <token name="@EXECUTABLE@">IDExtractor</token>
8 <expand macro="stdio"/> 8 <import>macros.xml</import>
9 <expand macro="requirements"/> 9 </macros>
10 <command>IDExtractor 10 <expand macro="references"/>
11 <expand macro="stdio"/>
12 <expand macro="requirements"/>
13 <command>IDExtractor
11 14
12 -in ${param_in} 15 #if $param_in:
13 -out ${param_out} 16 -in $param_in
14 -number_of_peptides ${param_number_of_peptides} 17 #end if
15 -number_of_rand_invokations ${param_number_of_rand_invokations} 18 #if $param_out:
16 ${param_best_hits} 19 -out $param_out
17 -threads \${GALAXY_SLOTS:-24} 20 #end if
21 #if $param_number_of_peptides:
22 -number_of_peptides $param_number_of_peptides
23 #end if
24 #if $param_number_of_rand_invokations:
25 -number_of_rand_invokations $param_number_of_rand_invokations
26 #end if
27 #if $param_best_hits:
28 -best_hits
29 #end if
30 -threads \${GALAXY_SLOTS:-24}
31 #if $adv_opts.adv_opts_selector=='advanced':
32 #if $adv_opts.param_force:
33 -force
34 #end if
35 #end if
18 </command> 36 </command>
19 <inputs> 37 <inputs>
20 <param name="param_in" type="data" format="idXML" optional="False" label="input file" help="(-in)"/> 38 <param format="xml" help="(-in) " label="input file" name="param_in" optional="False" type="data"/>
21 <param name="param_number_of_peptides" type="integer" min="1" optional="True" value="10" label="Number of randomly chosen peptides" help="(-number_of_peptides)"/> 39 <param help="(-number_of_peptides) " label="Number of randomly chosen peptides" min="1" name="param_number_of_peptides" optional="True" type="integer" value="10"/>
22 <param name="param_number_of_rand_invokations" type="integer" min="0" optional="True" value="0" label="Number of rand invocations before random draw" help="(-number_of_rand_invokations)"/> 40 <param help="(-number_of_rand_invokations) " label="Number of rand invocations before random draw" min="0" name="param_number_of_rand_invokations" optional="True" type="integer" value="0"/>
23 <param name="param_best_hits" type="boolean" truevalue="-best_hits true" falsevalue="-best_hits false" checked="false" optional="True" label="If this flag is set the best n peptides are chosen." help="(-best_hits)"/> 41 <param checked="false" falsevalue="" help="(-best_hits) " label="If this flag is set the best n peptides are chosen" name="param_best_hits" optional="True" truevalue="-best_hits" type="boolean"/>
24 </inputs> 42 <expand macro="advanced_options">
25 <outputs> 43 <param checked="false" falsevalue="" help="(-force) " label="Overwrite tool specific checks" name="param_force" optional="True" truevalue="-force" type="boolean"/>
26 <data name="param_out" label="output file" format="idXML"/> 44 </expand>
27 </outputs> 45 </inputs>
28 <help>**What it does** 46 <outputs>
29 47 <data format="xml" name="param_out"/>
30 Extracts 'n' peptides randomly or best 'n' from idXML files. 48 </outputs>
49 <help>Extracts 'n' peptides randomly or best 'n' from idXML files.
31 50
32 51
33 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_IDExtractor.html 52 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_IDExtractor.html</help>
34 53 </tool>
35 @REFERENCES@
36 </help>
37 </tool>