Mercurial > repos > galaxyp > idconvert
comparison idconvert.xml @ 0:4f7d6bec667f draft
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert commit 4fa5bf9c62e4bba06c4d6e7de962c85959b61579-dirty
author | galaxyp |
---|---|
date | Fri, 08 Apr 2016 16:07:32 -0400 |
parents | |
children | 9e6e840d6b52 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4f7d6bec667f |
---|---|
1 <tool id="idconvert" name="idconvert" version="@VERSION@.0"> | |
2 <description>Convert mass spectrometry identification files</description> | |
3 | |
4 <macros> | |
5 <import>msconvert_macros.xml</import> | |
6 </macros> | |
7 | |
8 <expand macro="generic_requirements" /> | |
9 | |
10 <command> | |
11 <![CDATA[ | |
12 #set input_name | |
13 ln -s $input input.${input.extension} | |
14 idconvert input | |
15 | |
16 ]]> | |
17 </command> | |
18 | |
19 <inputs> | |
20 <conditional name="from"> | |
21 <param name="from_format" type="select" label="Convert from"> | |
22 <option value="mzid">mzIdentML (mzid)</option> | |
23 <option value="protxml">protXML (protxml)</option> | |
24 <option value="pepxml">pepXML (pepxml)</option> | |
25 </param> | |
26 <when value="mzid"> | |
27 <param name="input" type="data" format="pepxml,protxml,mzid" label="MS mzIdentML (mzid)" /> | |
28 </when> | |
29 <when value="protxml"> | |
30 <param name="input" type="data" format="protxml" label="MS pepXML (pepxml)" /> | |
31 <param name="pepxml" type="data" format="pepxml" label="MS Identification" /> | |
32 </when> | |
33 <when value="pepxml"> | |
34 <param name="input" type="data" format="pepxml" label="MS Identification" /> | |
35 </when> | |
36 </conditional> | |
37 <param name="to_format" type="select" label="Convert to"> | |
38 <option value="mzid">mzIdentML (mzid)</option> | |
39 <option value="pepxml">pepXML (pepxml)</option> | |
40 <option value="text">text</option> | |
41 </param> | |
42 </inputs> | |
43 | |
44 <tests> | |
45 </tests> | |
46 <help> | |
47 </help> | |
48 <expand macro="citations" /> | |
49 </tool> |