comparison IDFileConverter.xml @ 0:bea4646ed591 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:26:05 -0500
parents
children f700da3ba35f
comparison
equal deleted inserted replaced
-1:000000000000 0:bea4646ed591
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: [ID Processing]-->
4 <tool id="IDFileConverter" name="IDFileConverter" version="2.1.0">
5 <description>Converts identification engine file formats.</description>
6 <macros>
7 <token name="@EXECUTABLE@">IDFileConverter</token>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="references"/>
11 <expand macro="stdio"/>
12 <expand macro="requirements"/>
13 <command>IDFileConverter
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_type:
22 -out_type
23 #if " " in str($param_out_type):
24 "$param_out_type"
25 #else
26 $param_out_type
27 #end if
28 #end if
29 #if $param_mz_file:
30 -mz_file $param_mz_file
31 #end if
32 #if $param_mz_name:
33 -mz_name "$param_mz_name"
34 #end if
35 #if $param_peptideprophet_analyzed:
36 -peptideprophet_analyzed
37 #end if
38 #if $param_score_type:
39 -score_type $param_score_type
40 #end if
41 #if $adv_opts.adv_opts_selector=='advanced':
42 #if $adv_opts.param_ignore_proteins_per_peptide:
43 -ignore_proteins_per_peptide
44 #end if
45 #if $adv_opts.param_scan_regex:
46 -scan_regex "$adv_opts.param_scan_regex"
47 #end if
48 #if $adv_opts.param_force:
49 -force
50 #end if
51 #end if
52 </command>
53 <inputs>
54 <param name="param_in" type="data" format="tabular,mzid,pepxml,idxml" optional="False" label="Input file or directory containing the data to convert" help="(-in) This may be: &lt;br&gt;- a single file in a multi-purpose XML format (pepXML, protXML, idXML, mzid), &lt;br&gt;- a single file in a search engine-specific format (Mascot: mascotXML, OMSSA: omssaXML, X! Tandem: xml, Percolator: psms), &lt;br&gt;- a single text file (tab separated) with one line for all peptide sequences matching a spectrum (top N hits), &lt;br&gt;- for Sequest results, a directory containing .out files. &lt;br&gt;"/>
55 <param name="param_out_type" display="radio" type="select" optional="True" label="Output file type (default: determined from file extension)" help="(-out_type) ">
56 <option value="idXML">idXML</option>
57 <option value="mzid">mzid</option>
58 <option value="pepXML">pepXML</option>
59 <option value="FASTA">FASTA</option>
60 </param>
61 <param name="param_mz_file" type="data" format="mzxml,mzml" optional="True" label="[pepXML, Sequest, Mascot, X! Tandem, Percolator only] Retention times will be looked up in this file" help="(-mz_file) "/>
62 <param name="param_mz_name" type="text" size="30" label="[pepXML only] Experiment filename/path (extension will be removed) to match in the pepXML file ('base_name' attribute)" help="(-mz_name) Only necessary if different from 'mz_file'">
63 <sanitizer>
64 <valid initial="string.printable">
65 <remove value="'"/>
66 <remove value="&quot;"/>
67 </valid>
68 </sanitizer>
69 </param>
70 <param name="param_peptideprophet_analyzed" display="radio" type="boolean" truevalue="-peptideprophet_analyzed" falsevalue="" checked="false" optional="True" label="[pepXML output only] Write output in the format of a PeptideProphet analysis result" help="(-peptideprophet_analyzed) By default a 'raw' pepXML is produced that contains only search engine results"/>
71 <param name="param_score_type" display="radio" type="select" optional="False" value="qvalue" label="[Percolator only] Which of the Percolator scores to report as 'the' score for a peptide hit" help="(-score_type) ">
72 <option value="qvalue" selected="true">qvalue</option>
73 <option value="PEP">PEP</option>
74 <option value="score">score</option>
75 </param>
76 <expand macro="advanced_options">
77 <param name="param_ignore_proteins_per_peptide" display="radio" type="boolean" truevalue="-ignore_proteins_per_peptide" falsevalue="" checked="false" optional="True" label="[Sequest only] Workaround to deal with .out files that contain" help="(-ignore_proteins_per_peptide) e.g. &quot;+1&quot; in references column, &lt;br&gt;but do not list extra references in subsequent lines (try -debug 3 or 4)"/>
78 <param name="param_scan_regex" type="text" size="30" label="[Mascot, pepXML, Percolator only] Regular expression used to extract the scan number or retention time" help="(-scan_regex) See documentation for details">
79 <sanitizer>
80 <valid initial="string.printable">
81 <remove value="'"/>
82 <remove value="&quot;"/>
83 </valid>
84 </sanitizer>
85 </param>
86 <param name="param_force" display="radio" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
87 </expand>
88 </inputs>
89 <outputs>
90 <data name="param_out" format="mzid"/>
91 </outputs>
92 <help>Converts identification engine file formats.
93
94
95 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_IDFileConverter.html</help>
96 </tool>