0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="ProteinQuantifier" name="ProteinQuantifier" version="2.0.0">
|
|
3 <description>Compute peptide and protein abundances</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">ProteinQuantifier</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>ProteinQuantifier
|
|
11
|
|
12 #if $param_in:
|
|
13 -in $param_in
|
|
14 #end if
|
|
15 #if $param_protein_groups:
|
|
16 -protein_groups $param_protein_groups
|
|
17 #end if
|
|
18 #if $param_out:
|
|
19 -out $param_out
|
|
20 #end if
|
|
21 #if $param_peptide_out:
|
|
22 -peptide_out $param_peptide_out
|
|
23 #end if
|
|
24 #if $param_top:
|
|
25 -top $param_top
|
|
26 #end if
|
|
27 #if $param_average:
|
|
28 -average
|
|
29 #if " " in str($param_average):
|
|
30 "$param_average"
|
|
31 #else
|
|
32 $param_average
|
|
33 #end if
|
|
34 #end if
|
|
35 #if $param_include_all:
|
|
36 -include_all
|
|
37 #end if
|
|
38 #if $param_filter_charge:
|
|
39 -filter_charge
|
|
40 #end if
|
|
41 #if $param_ratios:
|
|
42 -ratios
|
|
43 #end if
|
|
44 #if $param_ratiosSILAC:
|
|
45 -ratiosSILAC
|
|
46 #end if
|
|
47 -threads \${GALAXY_SLOTS:-24}
|
|
48 #if $param_consensus_normalize:
|
|
49 -consensus:normalize
|
|
50 #end if
|
|
51 #if $param_consensus_fix_peptides:
|
|
52 -consensus:fix_peptides
|
|
53 #end if
|
|
54 #if $param_format_separator:
|
|
55 -format:separator "$param_format_separator"
|
|
56 #end if
|
|
57 #if $param_format_quoting:
|
|
58 -format:quoting
|
|
59 #if " " in str($param_format_quoting):
|
|
60 "$param_format_quoting"
|
|
61 #else
|
|
62 $param_format_quoting
|
|
63 #end if
|
|
64 #end if
|
|
65 #if $param_format_replacement:
|
|
66 -format:replacement "$param_format_replacement"
|
|
67 #end if
|
|
68 #if $adv_opts.adv_opts_selector=='advanced':
|
|
69 #if $adv_opts.param_force:
|
|
70 -force
|
|
71 #end if
|
|
72 #end if
|
|
73 </command>
|
|
74 <inputs>
|
|
75 <param name="param_in" type="data" format="featurexml,consensusxml,idxml" optional="False" label="Input file" help="(-in) "/>
|
|
76 <param name="param_protein_groups" type="data" format="idxml" optional="True" label="Protein inference results for the identification runs that were used to annotate the input (" help="(-protein_groups) e.g. from ProteinProphet via IDFileConverter or Fido via FidoAdapter). <br>Information about indistinguishable proteins will be used for protein quantification"/>
|
|
77 <param name="param_top" type="integer" min="0" optional="True" value="3" label="Calculate protein abundance from this number of proteotypic peptides (most abundant first; '0' for all)" help="(-top) "/>
|
|
78 <param name="param_average" type="select" optional="True" value="median" label="Averaging method used to compute protein abundances from peptide abundances" help="(-average) ">
|
|
79 <option value="median">median</option>
|
|
80 <option value="mean">mean</option>
|
|
81 <option value="weighted_mean">weighted_mean</option>
|
|
82 <option value="sum">sum</option>
|
|
83 </param>
|
|
84 <param name="param_include_all" type="boolean" truevalue="-include_all" falsevalue="" checked="false" optional="True" label="Include results for proteins with fewer proteotypic peptides than indicated by 'top' (no effect if 'top' is 0 or 1)" help="(-include_all) "/>
|
|
85 <param name="param_filter_charge" type="boolean" truevalue="-filter_charge" falsevalue="" checked="false" optional="True" label="Distinguish between charge states of a peptide" help="(-filter_charge) For peptides, abundances will be reported separately for each charge; <br>for proteins, abundances will be computed based only on the most prevalent charge of each peptide. <br>By default, abundances are summed over all charge states"/>
|
|
86 <param name="param_ratios" type="boolean" truevalue="-ratios" falsevalue="" checked="false" optional="True" label="Add the log2 ratios of the abundance values to the output" help="(-ratios) Format: log_2(x_0/x_0) <sep> log_2(x_1/x_0) <sep> log_2(x_2/x_0) "/>
|
|
87 <param name="param_ratiosSILAC" type="boolean" truevalue="-ratiosSILAC" falsevalue="" checked="false" optional="True" label="Add the log2 ratios for a triple SILAC experiment to the output" help="(-ratiosSILAC) Only applicable to consensus maps of exactly three sub-maps. Format: log_2(heavy/light) <sep> log_2(heavy/middle) <sep> log_2(middle/light)"/>
|
|
88 <param name="param_consensus_normalize" type="boolean" truevalue="-consensus:normalize" falsevalue="" checked="false" optional="True" label="Scale peptide abundances so that medians of all samples are equal" help="(-normalize) "/>
|
|
89 <param name="param_consensus_fix_peptides" type="boolean" truevalue="-consensus:fix_peptides" falsevalue="" checked="false" optional="True" label="Use the same peptides for protein quantification across all samples" help="(-fix_peptides) <br>With 'top 0', all peptides that occur in every sample are considered. <br>Otherwise ('top N'), the N peptides that occur in the most samples (independently of each other) are selected, <br>breaking ties by total abundance (there is no guarantee that the best co-ocurring peptides are chosen!)"/>
|
|
90 <param name="param_format_separator" type="text" size="30" label="Character(s) used to separate fields; by default, the 'tab' character is used" help="(-separator) ">
|
|
91 <sanitizer>
|
|
92 <valid initial="string.printable">
|
|
93 <remove value="'"/>
|
|
94 <remove value="""/>
|
|
95 </valid>
|
|
96 </sanitizer>
|
|
97 </param>
|
|
98 <param name="param_format_quoting" type="select" optional="True" value="double" label="Method for quoting of strings: 'none' for no quoting, 'double' for quoting with doubling of embedded quotes, <br>'escape' for quoting with backslash-escaping of embedded quotes" help="(-quoting) ">
|
|
99 <option value="none">none</option>
|
|
100 <option value="double">double</option>
|
|
101 <option value="escape">escape</option>
|
|
102 </param>
|
|
103 <param name="param_format_replacement" type="text" size="30" value="_" label="If 'quoting' is 'none', used to replace occurrences of the separator in strings before writing" help="(-replacement) ">
|
|
104 <sanitizer>
|
|
105 <valid initial="string.printable">
|
|
106 <remove value="'"/>
|
|
107 <remove value="""/>
|
|
108 </valid>
|
|
109 </sanitizer>
|
|
110 </param>
|
|
111 <expand macro="advanced_options">
|
|
112 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
113 </expand>
|
|
114 </inputs>
|
|
115 <outputs>
|
|
116 <data name="param_out" format="tabular"/>
|
|
117 <data name="param_peptide_out" format="tabular"/>
|
|
118 </outputs>
|
|
119 <help>**What it does**
|
|
120
|
|
121 Compute peptide and protein abundances
|
|
122
|
|
123
|
|
124 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_ProteinQuantifier.html</help>
|
|
125 <expand macro="references"/>
|
|
126 </tool>
|