0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="MassCalculator" name="MassCalculator" version="1.12.0">
|
|
3 <description>Calculates masses and mass-to-charge ratios of peptide sequences</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">MassCalculator</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>MassCalculator
|
|
11
|
|
12 -in ${param_in}
|
|
13 -in_seq ${param_in_seq}
|
|
14 -out ${param_out}
|
|
15 -charge ${param_charge}
|
|
16 -format ${param_format}
|
|
17 ${param_average_mass}
|
|
18 -fragment_type ${param_fragment_type}
|
|
19 -separator ${param_separator}
|
|
20 -threads \${GALAXY_SLOTS:-24}
|
|
21 </command>
|
|
22 <inputs>
|
|
23 <param name="param_in" type="data" format="txt" optional="True" label="Input file with peptide sequences and optionally charge numbers (mutually exclusive to 'in_seq')" help="(-in)"/>
|
|
24 <param name="param_in_seq" type="text" size="20" label="List of peptide sequences (mutually exclusive to 'in')" help="(-in_seq)"/>
|
|
25 <param name="param_charge" type="text" size="20" value="0" label="List of charge states; required if 'in_seq' is given" help="(-charge)"/>
|
|
26 <param name="param_format" type="select" optional="True" value="list" label="Output format ('list': human-readable list, 'table': CSV-like table, 'mass_only': mass values only, 'mz_only': m/z values only)#br#" help="(-format)">
|
|
27 <option value="list">list</option>
|
|
28 <option value="table">table</option>
|
|
29 <option value="mass_only">mass_only</option>
|
|
30 <option value="mz_only">mz_only</option>
|
|
31 </param>
|
|
32 <param name="param_average_mass" type="boolean" truevalue="-average_mass true" falsevalue="-average_mass false" checked="false" optional="True" label="Compute average (instead of monoisotopic) peptide masses" help="(-average_mass)"/>
|
|
33 <param name="param_fragment_type" type="select" optional="True" value="full" label="For what type of sequence/fragment the mass should be computed#br#" help="(-fragment_type)">
|
|
34 <option value="full">full</option>
|
|
35 <option value="internal">internal</option>
|
|
36 <option value="N-terminal">N-terminal</option>
|
|
37 <option value="C-terminal">C-terminal</option>
|
|
38 <option value="a-ion">a-ion</option>
|
|
39 <option value="b-ion">b-ion</option>
|
|
40 <option value="c-ion">c-ion</option>
|
|
41 <option value="x-ion">x-ion</option>
|
|
42 <option value="y-ion">y-ion</option>
|
|
43 <option value="z-ion">z-ion</option>
|
|
44 </param>
|
|
45 <param name="param_separator" type="text" size="20" label="Field separator for 'table' output format; by default, the 'tab' character is used" help="(-separator)"/>
|
|
46 </inputs>
|
|
47 <outputs>
|
|
48 <data name="param_out" label="Output file; if empty, output is written to the screen" format="txt"/>
|
|
49 </outputs>
|
|
50 <help>**What it does**
|
|
51
|
|
52 Calculates masses and mass-to-charge ratios of peptide sequences
|
|
53
|
|
54
|
|
55 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_MassCalculator.html
|
|
56
|
|
57 @REFERENCES@
|
|
58 </help>
|
|
59 </tool>
|