comparison id_file_converter.xml @ 0:ba86fd127f5a draft

Uploaded
author galaxyp
date Wed, 19 Dec 2012 00:32:25 -0500
parents
children cf0d72c7b482
comparison
equal deleted inserted replaced
-1:000000000000 0:ba86fd127f5a
1 <tool id="openms_id_file_converter" version="0.1.0" name="ID File Converter">
2 <description>
3 Converts identification engine file formats.
4 </description>
5 <requirements>
6 <requirement type="package">openms</requirement>
7 </requirements>
8 <command interpreter="python">
9 openms_wrapper.py --executable 'IDFileConverter' --config $config
10 </command>
11 <configfiles>
12 <configfile name="config">[simple_options]
13 in=${in}
14 in_type=${in.ext}
15 out=${out}
16 out_type=${output_type}
17 </configfile>
18 </configfiles>
19 <inputs>
20 <param format="pepxml,protxml,idxml" name="in" type="data" label="Input Identification File"/>
21 <param name="output_type" type="select" label="Output Type">
22 <option value="idxml">idXML</option>
23 <option value="pepxml">pepXM</option>
24 <option value="mzid">mzIdentML</option>
25 <option value="fasta">FASTA</option>
26 </param>
27 </inputs>
28 <outputs>
29 <data format="idxml" name="out">
30 <change_format>
31 <when input="output_type" value="pepxml" format="pepxml" />
32 <when input="output_type" value="mzid" format="mzid" />
33 <when input="output_type" value="fasta" format="fasta" />
34 </change_format>
35 </data>
36 </outputs>
37 <help>
38 **What it does**
39
40 Shows basic information about the file, such as data ranges and file type.
41
42 **Citation**
43
44 For the underlying tool, please cite ``Marc Sturm, Andreas Bertsch, Clemens Gröpl, Andreas Hildebrandt, Rene Hussong, Eva Lange, Nico Pfeifer, Ole Schulz-Trieglaff, Alexandra Zerck, Knut Reinert, and Oliver Kohlbacher, 2008. OpenMS – an Open-Source Software Framework for Mass Spectrometry. BMC Bioinformatics 9: 163. doi:10.1186/1471-2105-9-163.``
45
46 If you use this tool in Galaxy, please cite Chilton J, et al. https://bitbucket.org/galaxyp/galaxyp-toolshed-openms
47 </help>
48 </tool>