comparison ProteinInference.xml @ 0:3070d71e0e5c draft

Uploaded
author bgruening
date Thu, 16 Apr 2015 08:37:04 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3070d71e0e5c
1 <?xml version='1.0' encoding='UTF-8'?>
2 <tool id="ProteinInference" name="ProteinInference" version="2.0.0">
3 <description>Protein inference based on the number of identified peptides.</description>
4 <macros>
5 <token name="@EXECUTABLE@">ProteinInference</token>
6 <import>macros.xml</import>
7 </macros>
8 <expand macro="stdio"/>
9 <expand macro="requirements"/>
10 <command>ProteinInference
11
12 #if $param_in:
13 -in $param_in
14 #end if
15 #if $param_out:
16 -out $param_out
17 #end if
18 #if $param_min_peptides_per_protein:
19 -min_peptides_per_protein $param_min_peptides_per_protein
20 #end if
21 #if $param_treat_charge_variants_separately:
22 -treat_charge_variants_separately
23 #end if
24 #if $param_treat_modification_variants_separately:
25 -treat_modification_variants_separately
26 #end if
27 -threads \${GALAXY_SLOTS:-24}
28 #if $adv_opts.adv_opts_selector=='advanced':
29 #if $adv_opts.param_force:
30 -force
31 #end if
32 #end if
33 </command>
34 <inputs>
35 <param name="param_in" type="data" format="idxml" optional="False" label="input file" help="(-in) "/>
36 <param name="param_min_peptides_per_protein" type="integer" min="1" optional="True" value="2" label="Minimal number of peptides needed for a protein identification" help="(-min_peptides_per_protein) "/>
37 <param name="param_treat_charge_variants_separately" type="boolean" truevalue="-treat_charge_variants_separately" falsevalue="" checked="false" optional="True" label="If this flag is set, different charge variants of the same peptide sequence count as inidividual evidences" help="(-treat_charge_variants_separately) "/>
38 <param name="param_treat_modification_variants_separately" type="boolean" truevalue="-treat_modification_variants_separately" falsevalue="" checked="false" optional="True" label="If this flag is set, different modification variants of the same peptide sequence count as individual evidences" help="(-treat_modification_variants_separately) "/>
39 <expand macro="advanced_options">
40 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
41 </expand>
42 </inputs>
43 <outputs>
44 <data name="param_out" format="idxml"/>
45 </outputs>
46 <help>**What it does**
47
48 Protein inference based on the number of identified peptides.
49
50
51 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_ProteinInference.html</help>
52 <expand macro="references"/>
53 </tool>