annotate pecan.xml @ 0:69274b068a48 draft default tip

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
author jjohnson
date Fri, 25 Aug 2017 14:25:21 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
1 <tool id="pecan" name="PECAN" version="0.1.0">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
2 <description>detect peptides directly from DIA Mass Spec</description>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
3 <requirements>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
4 <requirement type="package" version="0.9.9.3">pecan</requirement>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
5 </requirements>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
6 <stdio>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
7 <exit_code range="1:" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
8 </stdio>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
9 <version_command>pecan --VERSION</version_command>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
10 <command><![CDATA[
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
11 ## ln mzML file
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
12 #if $isolation.isolationsrc == 'entered':
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
13 #set $isolationfile = $isolationSheme
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
14 #else
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
15 #set $isolationfile = $isolation.isolation_windows
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
16 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
17 #set $outputRoot = 'test'
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
18 awk 'NF>1 && $1 ~ /^[0-9]+(\.[0-9]*)?$/{print \$1; print \$2; print "$outputRoot"}' $isolationfile |
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
19 xargs -n3 -P\${GALAXY_SLOTS}
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
20 pecan
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
21 #if $backgroundProteome:
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
22 --backgroundProteome='$backgroundProteome'
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
23 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
24 --bgDecoyNumber=$bgDecoyNumber
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
25 #if $decoyTag and str($decoyTag):
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
26 --decoyTag=$decoyTag
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
27 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
28 --ionTypes=$--ionTypes
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
29 --minElution=$minElution
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
30 --maxElution=$maxElution
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
31 --overlap=$advanced_options.overlap
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
32 #if $advanced_options.ms1.ms1Unit == 'ppm':
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
33 --ms1Unit=ppm
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
34 --ms1Tolerance=$advanced_options.ms1.ms1Tolerance
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
35 #elif $advanced_options.ms1.ms1Unit == 'mz':
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
36 --ms1Unit=mz
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
37 --ms1Tolerance=$advanced_options.ms1.ms1Tolerance
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
38 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
39 #if $advanced_options.ms2.ms2Unit == 'ppm':
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
40 --ms2Unit=ppm
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
41 --ms2Tolerance=$advanced_options.ms2.ms2Tolerance
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
42 #elif $advanced_options.ms2.ms2Unit == 'mz':
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
43 --ms2Unit=mz
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
44 --ms2Tolerance=$advanced_options.ms2.ms2Tolerance
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
45 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
46 --minCharge=$advanced_options.minCharge
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
47 --maxCharge=$advanced_options.maxCharge
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
48 #if $advanced_options.ms2Boundaries.specify == 'specify':
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
49 --ms2Boundaries="$advanced_options.ms2Boundaries.ms2BoundariesMin,$advanced_options.ms2Boundaries.ms2BoundariesMax"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
50 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
51 --alpha=$advanced_options.alpha
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
52 --beta=$advanced_options.beta
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
53 --idotp=$advanced_options.idotp
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
54 --topX=$advanced_options.topX
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
55 #if $advanced_options.fixedMod and str($advanced_options.fixedMod):
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
56 --fixedMod='$advanced_options.fixedMod'
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
57 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
58 $input $peptides 2>1 > run.log
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
59 && cat "$outputRoot"*.log > '$log_file'
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
60 && cat "$outputRoot"*.td.feature | awk 'NR==1{print $0};!/peakCalibratedScore/{print $0}' > '$feature_file'
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
61 ]]></command>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
62
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
63 <configfiles>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
64 <configfile name="isolationSheme">#slurp
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
65 #import re
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
66 #if $isolation.isolationsrc == 'entered':
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
67 #echo $re.sub(r'(\d+[.]\d+)\s+(\d+[.]\d)\s*',r'\1\t\2\n',$isolation.isolation_windows.strip())
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
68 #end if
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
69 #slurp</configfile>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
70 </configfiles>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
71 <inputs>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
72 <param name="input" type="data" format="mzml" label="centroided mzML file"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
73 <param name="sciex" type="boolean" truevalue="--sciex" falsevalue="" checked="false"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
74 label="mzML files were generated from AB SCIEX MS Data Converter"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
75 <param name="peptides" type="data" format="tabular" multiple="true" label="target peptides"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
76
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
77 <conditional name="isolation">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
78 <param name="isolationsrc" type="select" label="isolation windows">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
79 <option value="entered">Enter isolation windows</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
80 <option value="history">Read isolation windows from a history dataset</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
81 </param>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
82 <when value="entered">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
83 <param name="isolation_windows" type="text" area="true" size="20x20" value="" label="isolation windows">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
84 <validator type="regex" message="enter pairs of window boudaries, e.g.:400.0 420.0">^(?ms)(\d+[.]\d+\s\d+[.]\d)(\s\d+[.]\d+\s\d+[.]\d)*$</validator>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
85 </param>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
86 </when>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
87 <when value="history">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
88 <param name="isolation_windows" type="data" format="tabular" label="isolation windows"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
89 </when>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
90 </conditional>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
91
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
92 <!-- species - default proteomes for (ecoli/yeast/mouse/human) -->
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
93 <param name="backgroundProteome" type="data" format="tabular" optional="true" label="BackgroundProteome"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
94 help="Peptide list file name of background proteome. Recommended if querying for a small number of peptides."/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
95 <param name="bgDecoyNumber" type="integer" value="2000" min="0" label="Number of decoys used for background estimation"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
96 optional="True" help="(-n) Default= 2000" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
97 <param name="decoyTag" type="text" value="decoy" optional="true" label="Tag for decoy sequences in the database"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
98
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
99 <param name="ionTypes" type="select" label="Fragment ion types" help="suggested HCD: y, reCID: by">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
100 <option value="by">by</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
101 <option value="y">y</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
102 <option value="b">b</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
103 </param>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
104
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
105 <param name="minElution" type="integer" value="12" min="1" label="Minimum time in seconds a peptide is expected to elute"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
106 optional="True" help="(-m) Default= 12 seconds" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
107 <param name="maxElution" type="integer" value="30" min="1" label="Maximum time in seconds a peptide is expected to elute"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
108 optional="True" help="(-x) Default= 30 seconds" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
109
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
110 <section name="advanced_options" expanded="false" title="Advanced Options">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
111 <param name="overlap" type="integer" value="0" min="0" max="100" label="Overlap percentage of isolation window"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
112 <conditional name="ms1">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
113 <param name="ms1Unit" type="select" label="Unit for precursor ion extraction tolerance">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
114 <option value="ppm">ppm</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
115 <option value="mz">mz</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
116 </param>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
117 <when value="ppm">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
118 <param name="ms1Tolerance" type="integer" value="10" min="0" label="ms1Tolerance"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
119 help="Mass error for precursor ion extracting"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
120 </when>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
121 <when value="mz">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
122 <param name="ms1Tolerance" type="float" value="10" min="0" label="ms1Tolerance"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
123 help="Mass error for precursor ion extracting"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
124 </when>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
125 </conditional>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
126 <conditional name="ms2">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
127 <param name="ms2Unit" type="select" label="Unit for fragment ion extraction tolerance">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
128 <option value="ppm">ppm</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
129 <option value="mz">mz</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
130 </param>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
131 <when value="ppm">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
132 <param name="ms2Tolerance" type="integer" value="10" min="0" label="ms2Tolerance"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
133 help="Mass error for precursor ion extracting"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
134 </when>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
135 <when value="mz">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
136 <param name="ms2Tolerance" type="float" value="10" min="0" label="ms2Tolerance"
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
137 help="Mass error for precursor ion extracting"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
138 </when>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
139 </conditional>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
140 <param name="minCharge" type="integer" value="2" min="1" label="Minimum charge state searched"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
141 <param name="maxCharge" type="integer" value="3" min="1" label="Maximum charge state searched"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
142 <conditional name="ms2Boundaries">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
143 <param name="specify" type="select" label="Unit for fragment ion extraction tolerance">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
144 <option value="calculate">Let PECAN calculate MS2 Boundaries</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
145 <option value="specify">Specify MS2 Boundaries</option>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
146 </param>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
147 <when value="calculate"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
148 <when value="specify">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
149 <param name="ms2BoundariesMin" type="float" value="" label="Specify the MS2 scan lower m/z limit for the target window"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
150 <param name="ms2BoundariesMax" type="float" value="" label="Specify the MS2 scan upper m/z limit for the target window"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
151 </when>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
152 </conditional>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
153 <param name="alpha" type="float" value="1.8" min="0.0" label="Alpha hyperparameter to set score threshold for cIons" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
154 <param name="beta" type="float" value="0.4" min="0.0" max="1.0" label="Beta hyperparameter to set score threshold for cIons" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
155 <param name="idotp" type="float" value="0.0" min="0.0" label="MS1 idotp threshold used for peak picking" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
156 <param name="topX" type="integer" value="1" min="1" label="Reporting top x peaks per charged peptide"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
157
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
158 <param name="fixedMod" type="text" value="" optional="true" label="Fixed modifications in the sample">
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
159 <help><![CDATA[
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
160 Fixed modifications in the sample. For example, default C[+57.021] will treat every Cys
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
161 in the query sequences and background proteome as C[+57.021] while overwriting any
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
162 specific modifications on individual Cys
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
163 If multiple fixed modifications are desired use "," to separate each fixedMod tag
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
164 (e.g. C[+57.021],M[+15.995])
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
165 ]]></help>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
166 <validator type="regex" message="C[+57.021],M[+15.995]">^([A-Z]\[[+-]\d+[.]\d+\](,[A-Z]\[[+-]\d+[.]\d+\])*)*$</validator>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
167 <sanitizer sanitize="False"/>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
168 </param>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
169 </section>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
170 <!--
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
171 verbosity#Verbosity level for file logging (WARNING/INFO/DEBUG) Default=INFO
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
172 -->
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
173 </inputs>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
174 <outputs>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
175 <data name="log_file" format="txt" label="" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
176 <data name="feature_file" format="percin" label="" />
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
177 </outputs>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
178 <help><![CDATA[
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
179 **PECAN**
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
180
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
181 PECAN (PEptide-Centric ANalysis) is a tool for peptide detection directly from DIA data without the need of a spectral library. PECAN takes a list of peptide sequences and query each peptide against the DIA data (in centroid mzML format) and reports the best evidence of detection for each peptide. The PECAN report is designed for Percolator to separate correct from incorrect matches with false discovery rate (FDR) control.
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
182
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
183 usage: pecan [-h] [-d DECOYTAG] [--ms1Unit MS1UNIT] [--ms2Unit MS2UNIT]
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
184 [-p MS1TOLERANCE] [-q MS2TOLERANCE] [-m MINELUTION]
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
185 [-x MAXELUTION] [-b BACKGROUNDPROTEOME] [-n BGDECOYNUMBER]
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
186 [-i IDOTP] [-v VERBOSITY] [-t TOPX] [--minCharge MINCHARGE]
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
187 [--maxCharge MAXCHARGE] [-s IONTYPES] [--overlap OVERLAP]
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
188 [--SCIEX] [--VERSION] [--ms2Boundaries MS2BOUNDARIES]
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
189 [--alpha ALPHA] [--beta BETA] [--fixedMod FIXEDMOD]
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
190 mzMLFileName peptideListFileName isolationStart isolationEnd
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
191 outputRoot
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
192
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
193
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
194
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
195 positional arguments:
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
196 mzMLFileName path to the centroid .mzML file
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
197 peptideListFileName path to the query peptide list
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
198 isolationStart precursor m/z of isolation start
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
199 isolationEnd precursor m/z of isolation end
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
200 outputRoot name base of the output files
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
201
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
202 optional arguments:
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
203 -h, --help show this help message and exit
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
204 -d DECOYTAG, --decoyTag DECOYTAG
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
205 Tag for decoy sequences in the database
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
206 Default= decoy
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
207
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
208 --ms1Unit MS1UNIT Unit (ppm/mz) for precursor ion extraction tolerance
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
209 Used with -p
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
210 Default=ppm
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
211
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
212 --ms2Unit MS2UNIT Unit (ppm/mz) for fragment ion extraction tolerance
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
213 Used with -q
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
214 Default=ppm
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
215
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
216 -p MS1TOLERANCE, --ms1Tolerance MS1TOLERANCE
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
217 Mass error for precursor ion extracting
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
218 Default=10
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
219
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
220 -q MS2TOLERANCE, --ms2Tolerance MS2TOLERANCE
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
221 Mass error for fragment ion extracting
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
222 Default=10
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
223
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
224 -m MINELUTION, --minElution MINELUTION
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
225 Minimum time in seconds a peptide is expected to elute
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
226 Default= 12 seconds
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
227
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
228 -x MAXELUTION, --maxElution MAXELUTION
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
229 Maximum time in seconds a peptide is expected to elute
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
230 Default= 30 seconds
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
231
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
232 -b BACKGROUNDPROTEOME, --backgroundProteome BACKGROUNDPROTEOME
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
233 Peptide list file name of background proteome
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
234 Recommended if querying for a small number of peptides
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
235 Default=None
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
236
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
237 -n BGDECOYNUMBER, --bgDecoyNumber BGDECOYNUMBER
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
238 Number of decoys used for background estimation
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
239 Default=2000
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
240
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
241 -i IDOTP, --idotp IDOTP
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
242 MS1 idotp threshold used for peak picking
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
243 Default=0.000000
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
244
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
245 -v VERBOSITY, --verbosity VERBOSITY
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
246 Verbosity level for file logging (WARNING/INFO/DEBUG)
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
247 Default=INFO
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
248
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
249 -t TOPX, --topX TOPX Reporting top x peaks per charged peptide
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
250 Default=1
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
251
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
252 --minCharge MINCHARGE
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
253 Minimum charge state searched
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
254 Default=2
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
255
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
256 --maxCharge MAXCHARGE
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
257 Maximum charge state searched
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
258 Default=3
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
259
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
260 -s IONTYPES, --ionTypes IONTYPES
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
261 == To be added == Fragment ion types (b, y, or by)
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
262 Default=by
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
263
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
264 --overlap OVERLAP Overlap percentage of isolation window
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
265 Default=0
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
266
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
267 --SCIEX Flag if mzML is generated from AB Sciex converter
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
268 --VERSION Show current PECAN version
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
269
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
270 --ms2Boundaries MS2BOUNDARIES
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
271 Specify the MS2 scan lower and upper m/z limit such as 200,2000 for the target window
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
272 If not specify pecan will determine it with a function
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
273
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
274 --alpha ALPHA Alpha hyperparameter to set score threshold for cIons
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
275
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
276 --beta BETA Beta hyperparameter to set cutoff for number of cIons
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
277
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
278 --fixedMod FIXEDMOD Fixed modifications in the sample. For example, default C[+57.021] will treat every Cys
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
279 in the query sequences and background proteome as C[+57.021] while overwriting any
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
280 specific modifications on individual Cys
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
281 If multiple fixed modifications are desired use "," to separate each fixedMod tag
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
282 (e.g. C[+57.021],M[+15.995])
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
283
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
284
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
285 ]]></help>
69274b068a48 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/pecan commit 21855dec2949420d3bccfd6c9912578e9aacecf0
jjohnson
parents:
diff changeset
286 </tool>