annotate macros.xml @ 0:d0202c597434 draft

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
author jjohnson
date Fri, 19 Jun 2020 10:21:58 -0400
parents
children c394bccd6f64
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
1 <macros>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
2 <!--
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
3 # generate a Walnut CLIB from GPF-DIA and a FASTA
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
4 for i in library/*.mzML; do
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
5 java -Xmx20g -jar encyclopedia-0.9.0-executable.jar -walnut -i $i -f uniprot_yeast_25jan2019.fasta;
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
6 done
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
7 java -Xmx20g -jar encyclopedia-0.9.0-executable.jar -libexport -walnut -o chromatogram_library.elib -i library -f uniprot_yeast_25jan2019.fasta -a false;
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
8
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
9 # process single-injection DIA with the CLIB
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
10 for i in quant/*.mzML; do
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
11 java -Xmx20g -jar encyclopedia-0.9.0-executable.jar -i $i -l chromatogram_library.elib -f uniprot_yeast_25jan2019.fasta;
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
12 done
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
13
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
14 Next for Prosit:
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
15 # generate an EncyclopeDIA CLIB from GPF-DIA and a Prosit Library
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
16 for i in library/*.mzML; do
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
17 java -Xmx20g -jar encyclopedia-0.9.0-executable.jar -i $i -l prosit_library.dlib -f uniprot_yeast_25jan2019.fasta;
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
18 done
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
19 java -Xmx20g -jar encyclopedia-0.9.0-executable.jar -libexport -o chromatogram_library.elib -i library -f uniprot_yeast_25jan2019.fasta -a false;
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
20
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
21 # process single-injection DIA with the CLIB (exactly the same as with Walnut)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
22 for i in quant/*.mzML; do
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
23 java -Xmx20g -jar encyclopedia-0.9.0-executable.jar -i $i -l chromatogram_library.elib -f uniprot_yeast_25jan2019.fasta;
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
24 done
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
25 -->
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
26 <token name="@VERSION@">0.9.5</token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
27 <xml name="requirements">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
28 <requirements>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
29 <requirement type="package" version="@VERSION@">encyclopedia</requirement>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
30 <yield/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
31 </requirements>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
32 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
33 <xml name="citations">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
34 <citations>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
35 <citation type="doi">10.1038/s41467-018-07454-w</citation>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
36 <citation type="doi">10.1038/s41467-020-15346-1</citation>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
37 <yield />
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
38 </citations>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
39 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
40 <token name="@CMD_IMPORTS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
41 #import re
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
42 #def identifier_or_name($input1)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
43 #if hasattr($input1, 'element_identifier')
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
44 #return $input1.element_identifier
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
45 #else
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
46 #return $input1.name
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
47 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
48 #end def
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
49 #def clean($name1)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
50 ## #set $name_clean = $re.sub('[^\w\-_\.]', '_', $re.sub('(?i[.](fa|fasta|imzml|mzml)$)','', $re.sub('.*/','', $name1.rstrip('.gz'))))
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
51 ## #set $name_clean = $re.sub('[^\w\-_\.]', '_', $re.sub('.*/','', $name1.rstrip('.gz')))
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
52 #set $name_clean = $re.sub('[^\w\-_\.]', '_', $re.sub('(?i)[.](fa|fasta|imzml|mzml)$','', $re.sub('.*/','', $name1.rstrip('.gz'))))
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
53 #return $name_clean
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
54 #end def
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
55 #def ln_name($ds)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
56 #set $ext = ''
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
57 #if $ds.is_of_type('mzml')
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
58 #set $ext = ".mzML"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
59 #else if $ds.is_of_type('elib')
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
60 #set $ext = ".elib"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
61 #else if $ds.is_of_type('dlib')
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
62 #set $ext = ".dlib"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
63 #else if $ds.is_of_type('blib')
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
64 #set $ext = ".blib"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
65 #else if $ds.is_of_type('fasta')
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
66 #set $ext = ".fasta"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
67 #else if $ds.is_of_type('fasta.gz')
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
68 #set $ext = ".fasta.gz"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
69 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
70 #set $name = "%s%s" % ($clean($identifier_or_name($ds)),$ext)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
71 #return $name
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
72 #end def
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
73 #set $i_name = None
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
74 #set $f_name = None
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
75 #set $l_name = None
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
76 #set $t_name = None
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
77 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
78
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
79 <xml name="scan_input">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
80 <param argument="-i" type="data" format="imzml,mzml" label="Spectrum file, .mzml or .dia"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
81 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
82 <token name="@LINK_SCAN_INPUT@"><![CDATA[
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
83 #set $i_name = $ln_name($i)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
84 ln -s '$i' '$i_name' &&
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
85 ]]></token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
86 <token name="@SCAN_INPUT@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
87 -i '$i_name'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
88 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
89
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
90 <xml name="scan_inputs">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
91 <param argument="-i" type="data" format="imzml,mzml" multiple="true" label="Spectrum file, .mzml or .dia"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
92 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
93 <token name="@LINK_SCAN_INPUTS@"><![CDATA[
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
94 #set $inputs_dir = 'inputs'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
95 mkdir -p $inputs_dir &&
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
96 #for $sf in $i
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
97 #set $i_name = $ln_name($sf)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
98 ln -s '$sf' '${inputs_dir}/${i_name}' &&
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
99 #end for
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
100 ]]></token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
101 <token name="@SCAN_INPUTS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
102 -i '$inputs_dir'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
103 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
104
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
105 <xml name="fasta_input">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
106 <param argument="-f" type="data" format="fasta" label="Background protein fasta database"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
107 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
108 <token name="@LINK_FASTA_INPUT@"><![CDATA[
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
109 #set $f_name = $ln_name($f)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
110 ln -s '$f' '$f_name' &&
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
111 ]]></token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
112 <token name="@FASTA_INPUT@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
113 -f '$f_name'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
114 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
115
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
116 <xml name="target_fasta">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
117 <param argument="-t" type="data" format="fasta" label="target FASTA file" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
118 <param argument="-tp" type="boolean" truevalue="true" falsevalue="false" checked="false" label="target FASTA file contains peptides"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
119 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
120 <token name="@LINK_TARGET_FASTA@"><![CDATA[
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
121 #if $t
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
122 #set $t_name = $ln_name($t)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
123 ln -s '$t' '$t_name' &&
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
124 #else
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
125 #set $t_name = None
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
126 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
127 ]]></token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
128 <token name="@TARGET_FASTA@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
129 #if $t_name
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
130 -t '$t_name'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
131 -tp $tp
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
132 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
133 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
134
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
135 <xml name="lib_input" token_optional="true" token_help="">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
136 <param argument="-l" type="data" format="elib,dlib" optional="@OPTIONAL@" label="Library: Chromatagram .ELIB or Spectrum .DLIB">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
137 <help>@HELP@</help>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
138 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
139 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
140 <token name="@LINK_LIB_INPUT@"><![CDATA[
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
141 #if $l
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
142 #set $l_name = $ln_name($l)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
143 cp '$l' $l_name &&
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
144 #else
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
145 #set $l_name = None
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
146 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
147 ]]></token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
148 <token name="@LIB_INPUT@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
149 #if $l_name
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
150 -l '$l_name'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
151 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
152 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
153
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
154 <xml name="common_options" token_overlapping_selected="false" token_nonoverlapping_selected="false"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
155 token_cid_selected="false" token_hcd_selected="false">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
156 <conditional name="acquisition">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
157 <param name="set_acquisition" type="select" label="Set Acquisition Options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
158 <option value="no">No - use default options</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
159 <option value="yes">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
160 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
161 <when value="no"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
162 <when value="yes">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
163 <param argument="-numberOfExtraDecoyLibrariesSearched" type="float" value="0.0" min="0.0" max="1.0" label="numberOfExtraDecoyLibrariesSearched"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
164 <param argument="-acquisition" type="select" optional="true" label="Data Acquization Type">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
165 <option value="Overlapping DIA" selected="@OVERLAPPING_SELECTED@">Overlapping DIA</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
166 <option value="Non-Overlapping DIA" selected="@NONOVERLAPPING_SELECTED@">Non-Overlapping DIA</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
167 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
168 <param argument="-enzyme" type="select" optional="true" label="Digestion Enzyme">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
169 <option value="Trypsin">Trypsin</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
170 <option value="Trypsin/p">Trypsin/p</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
171 <option value="Lys-C">Lys-C</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
172 <option value="Lys-N">Lys-N</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
173 <option value="Arg-C">Arg-C</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
174 <option value="Glu-C">Glu-C</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
175 <option value="Chymotrypsin">Chymotrypsin</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
176 <option value="Pepsin A">Pepsin A</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
177 <option value="Elastase">Elastase</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
178 <option value="Thermolysin">Thermolysin</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
179 <option value="No Enzyme">No Enzyme</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
180 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
181 <param argument="-frag" type="select" optional="true" label="Fragmentation">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
182 <option value="CID" selected="@CID_SELECTED@">CID/HCD (B/Y)</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
183 <option value="HCD" selected="@HCD_SELECTED@">HCD (Y-Only)</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
184 <option value="ETD">ETD (C/Z/Z+1)</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
185 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
186 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
187 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
188 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
189 <xml name="encyclopedia_common_options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
190 <expand macro="common_options" token_overlapping_selected="true" token_nonoverlapping_selected="false"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
191 token_cid_selected="true" token_hcd_selected="false"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
192 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
193 <xml name="walnut_common_options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
194 <expand macro="common_options" token_overlapping_selected="false" token_nonoverlapping_selected="true"
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
195 token_cid_selected="false" token_hcd_selected="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
196 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
197 <token name="@COMMON_OPTIONS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
198 #if $acquisition.set_acquisition == 'yes'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
199 -numberOfExtraDecoyLibrariesSearched $acquisition.numberOfExtraDecoyLibrariesSearched
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
200 #if $acquisition.acquisition
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
201 -acquisition '$acquisition.acquisition'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
202 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
203 #if $acquisition.enzyme:
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
204 -enzyme '$acquisition.enzyme'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
205 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
206 #if $acquisition.frag:
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
207 -frag '$acquisition.frag'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
208 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
209 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
210 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
211
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
212 <xml name="mass_tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
213 <conditional name="tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
214 <param name="set_tolerance" type="select" label="Set Tolerance Options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
215 <option value="no">No - use default options</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
216 <option value="yes">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
217 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
218 <when value="no"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
219 <when value="yes">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
220 <conditional name="precursor_tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
221 <param argument="-ptolunits" type="select" label="Precursor Mass Tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
222 <option value="PPM">PPM</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
223 <option value="AMU">AMU</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
224 <option value="Resolution">Resolution</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
225 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
226 <when value="PPM">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
227 <param argument="-ptol" type="float" value="10" min="1.0" max="200.0" label="Precursor Mass Tolerance (PPM)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
228 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
229 <when value="AMU">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
230 <param argument="-ptol" type="float" value=".4" min="1.0" max="1.0" label="Precursor Mass Tolerance (AMU)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
231 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
232 <when value="Resolution">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
233 <param argument="-ptol" type="integer" value="15000" min="5000" max="300000" label="Precursor Mass Tolerance (Resolution)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
234 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
235 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
236 <conditional name="fragment_tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
237 <param argument="-ftolunits" type="select" label="Fragment Mass Tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
238 <option value="PPM">PPM</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
239 <option value="AMU">AMU</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
240 <option value="Resolution">Resolution</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
241 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
242 <when value="PPM">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
243 <param argument="-ftol" type="float" value="10" min="1.0" max="200.0" label="Fragment Mass Tolerance (PPM)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
244 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
245 <when value="AMU">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
246 <param argument="-ftol" type="float" value=".4" min="1.0" max="1.0" label="Fragment Mass Tolerance (AMU)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
247 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
248 <when value="Resolution">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
249 <param argument="-ftol" type="integer" value="15000" min="5000" max="300000" label="Fragment Mass Tolerance (Resolution)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
250 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
251 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
252 <yield/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
253 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
254 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
255 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
256 <token name="@MASS_TOLERANCE@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
257 #if $tolerance.set_tolerance == 'yes'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
258 -ptolunits $tolerance.precursor_tolerance.ptolunits
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
259 -ptol $tolerance.precursor_tolerance.ptol
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
260 -ftolunits $tolerance.fragment_tolerance.ftolunits
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
261 -ftol $tolerance.fragment_tolerance.ftol
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
262 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
263 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
264
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
265 <xml name="mass_library_tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
266 <expand macro="mass_tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
267 <conditional name="library_tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
268 <param argument="-ltolunits" type="select" label="Library Mass Tolerance">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
269 <option value="defaults">Use defaults</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
270 <option value="PPM">PPM</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
271 <option value="AMU">AMU</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
272 <option value="Resolution">Resolution</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
273 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
274 <when value="defaults"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
275 <when value="PPM">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
276 <param argument="-ltol" type="float" value="10" min="1.0" max="200.0" label="Library Mass Tolerance (PPM)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
277 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
278 <when value="AMU">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
279 <param argument="-ltol" type="float" value=".4" min="1.0" max="1.0" label="Library Mass Tolerance (AMU)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
280 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
281 <when value="Resolution">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
282 <param argument="-ltol" type="integer" value="15000" min="5000" max="300000" label="Library Mass Tolerance (Resolution)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
283 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
284 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
285 </expand>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
286 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
287 <token name="@MASS_LIBRARY_TOLERANCE@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
288 @MASS_TOLERANCE@
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
289 #if $tolerance.set_tolerance == 'yes' and $tolerance.library_tolerance.ltolunits != 'defaults'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
290 -ltolunits $tolerance.library_tolerance.ltolunits
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
291 -ltol $tolerance.library_tolerance.ltol
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
292 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
293 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
294
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
295 <xml name="percolator_options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
296 <conditional name="percolator">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
297 <param name="set_percolator" type="select" label="Set Percolator Options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
298 <option value="no">No - use default options</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
299 <option value="yes">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
300 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
301 <when value="no"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
302 <when value="yes">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
303 <param argument="-percolatorVersionNumber" type="integer" value="3" min="2" max="3" label="percolatorVersionNumber"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
304 <param argument="-percolatorProteinThreshold" type="float" value="0.01" label="percolatorProteinThreshold"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
305 <param argument="-percolatorThreshold" type="float" value="0.01" label="percolatorThreshold"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
306 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
307 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
308 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
309 <token name="@PERCOLATOR_OPTIONS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
310 #if $percolator.set_percolator == 'yes'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
311 #if str($percolator.percolatorVersionNumber)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
312 -percolatorVersionNumber $percolator.percolatorVersionNumber
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
313 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
314 #if str($percolator.percolatorProteinThreshold)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
315 -percolatorProteinThreshold $percolator.percolatorProteinThreshold
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
316 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
317 #if str($percolator.percolatorThreshold)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
318 -percolatorThreshold $percolator.percolatorThreshold
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
319 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
320 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
321 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
322
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
323 <xml name="peak_options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
324 <conditional name="peak">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
325 <param name="set_peak" type="select" label="Set Peak Options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
326 <option value="no">No - use default options</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
327 <option value="yes">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
328 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
329 <when value="no"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
330 <when value="yes">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
331 <param argument="-numberOfQuantitativePeaks" type="integer" value="" min="1" max="100" optional="true" label="Number of Quantitative Peaks" help="(default 5)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
332 <param argument="-minNumOfQuantitativePeaks" type="integer" value="" min="0" max="100" optional="true" label="Minimum Number of Quantitative Peaks" help="(default 3)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
333 <param argument="-minQuantitativeIonNumber" type="integer" value="" min="0" max="100" optional="true" label="Minimum Number of Quantitative Ions" help="(default 3)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
334 <param argument="-minIntensity" type="float" value="-1.0" optional="true" label="minIntensity"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
335 <param argument="-expectedPeakWidth" type="float" value="25.0" min="1" max="100.0" optional="true" label="Expected Peak Width" help="(default 5)"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
336 <param argument="-filterPeaklists" type="select" optional="true" label="Filter Peak Lists">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
337 <option value="false">No</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
338 <option value="true">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
339 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
340 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
341 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
342 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
343 <token name="@PEAK_OPTIONS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
344 #if $peak.set_peak == 'yes'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
345 #if str($peak.numberOfQuantitativePeaks)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
346 -numberOfQuantitativePeaks $peak.numberOfQuantitativePeaks
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
347 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
348 #if str($peak.minNumOfQuantitativePeaks)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
349 -minNumOfQuantitativePeaks $peak.minNumOfQuantitativePeaks
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
350 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
351 #if str($peak.minQuantitativeIonNumber)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
352 -minQuantitativeIonNumber $peak.minQuantitativeIonNumber
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
353 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
354 #if str($peak.minIntensity)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
355 -minIntensity $peak.minIntensity
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
356 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
357 #if str($peak.expectedPeakWidth)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
358 -expectedPeakWidth $peak.expectedPeakWidth
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
359 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
360 #if $peak.filterPeaklists
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
361 -filterPeaklists $peak.filterPeaklists
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
362 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
363 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
364 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
365
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
366 <xml name="window_options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
367 <conditional name="window">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
368 <param name="set_window" type="select" label="Set Window Options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
369 <option value="no">No - use default options</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
370 <option value="yes">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
371 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
372 <when value="no"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
373 <when value="yes">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
374 <param argument="-foffset" type="integer" value="" optional="true" label="fragmentOffsetPPM"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
375 <param argument="-poffset" type="integer" value="" optional="true" label="Precursor Offset PPM" help="-poffset"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
376 <param argument="-precursorIsolationMargin" type="integer" value="" optional="true" label="precursorIsolationMargin"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
377 <param argument="-precursorWindowSize" type="integer" value="" optional="true" label="precursorWindowSize"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
378 <param argument="-rtWindowInMin" type="float" value="" optional="true" label="rtWindowInMin"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
379 <param argument="-scoringBreadthType" type="select" optional="true" label="scoringBreadthType">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
380 <option value="window">Across entire window</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
381 <option value="recal20">Recalibrated (20% gradient)</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
382 <option value="recal">Recalibrated (peak width only)</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
383 <option value="uncal20">Uncalibrated (20% gradient)</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
384 <option value="uncal">Uncalibrated (peak width only)</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
385 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
386 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
387 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
388 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
389 <token name="@WINDOW_OPTIONS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
390 #if $window.set_window == 'yes'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
391 #if str($window.foffset)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
392 -foffset $window.foffset
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
393 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
394 #if str($window.poffset)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
395 -poffset $window.poffset
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
396 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
397 #if str($window.precursorIsolationMargin)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
398 -precursorIsolationMargin $window.precursorIsolationMargin
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
399 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
400 #if str($window.precursorWindowSize)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
401 -precursorWindowSize $window.precursorWindowSize
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
402 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
403 #if str($window.rtWindowInMin)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
404 -rtWindowInMin $window.rtWindowInMin
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
405 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
406 #if $window.scoringBreadthType
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
407 -scoringBreadthType $window.scoringBreadthType
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
408 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
409 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
410 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
411
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
412 <xml name="modification_options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
413 <conditional name="modifications">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
414 <param name="set_modifications" type="select" label="Set Modifications Options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
415 <option value="no">No - use default options</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
416 <option value="yes">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
417 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
418 <when value="no"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
419 <when value="yes">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
420 <param argument="-fixed" type="select" optional="true" label="Fixed Modification">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
421 <option value="C=57.0214635">C+57 (Carbamidomethyl) C=57.0214635</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
422 <option value="C=58.005479">C+58 (Carboxymethyl) C=58.005479</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
423 <option value="C=45.987721">C+46 (MMTS) C=45.987721</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
424 <option value="C=125.047679">C+125 (NEM) C=125.047679</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
425 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
426 <yield/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
427 <!--
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
428 <param argument="-localizationModification" type="select" optional="true" label="localizationModification">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
429 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
430 -->
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
431 <param argument="-verifyModificationIons" type="boolean" truevalue="true" falsevalue="false" checked="true" label="verifyModificationIons"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
432 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
433 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
434 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
435 <token name="@MODIFICATION_OPTIONS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
436 #if $modifications.set_modifications == 'yes'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
437 #if $modifications.fixed
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
438 -fixed $modifications.fixed
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
439 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
440 -verifyModificationIons $modifications.verifyModificationIons
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
441 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
442 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
443
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
444 <xml name="search_options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
445 <conditional name="search">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
446 <param name="set_search" type="select" label="Set Search Options">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
447 <option value="no">No - use default options</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
448 <option value="yes">Yes</option>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
449 </param>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
450 <when value="no"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
451 <when value="yes">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
452 <param argument="-minCharge" type="integer" value="2" min="1" max="10" label="minCharge" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
453 <param argument="-maxCharge" type="integer" value="3" min="1" max="10" label="maxCharge" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
454 <param argument="-minLength" type="integer" value="5" min="1" max="100" label="minLength" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
455 <param argument="-maxLength" type="integer" value="100" min="10" max="200" label="maxLength" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
456 <param argument="-minEluteTime" type="integer" value="12" min="1" max="69" label="minEluteTime" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
457 <param argument="-maxMissedCleavage" type="integer" value="1" min="0" max="5" label="maxMissedCleavage" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
458 <param argument="-minQuantitativeIonNumber" type="integer" value="3" min="1" max="10" label="minQuantitativeIonNumber" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
459 <param argument="-minNumOfQuantitativePeaks" type="integer" value="3" min="1" max="10" label="minNumOfQuantitativePeaks" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
460 <param argument="-numberOfQuantitativePeaks" type="integer" value="3" min="1" max="10" label="numberOfQuantitativePeaks" optional="true"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
461 <!--
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
462 <param argument="-alpha" type="float" value="1.8" min="0.0" max="5.0" label="alpha"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
463 <param argument="-beta" type="float" value="0.4" min="0.0" max="5.0" label="beta"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
464 <param argument="-addDecoysToBackground" type="boolean" truevalue="true" falsevalue="false" checked="false" label="addDecoysToBackground"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
465 <param argument="-dontRunDecoys" type="boolean" truevalue="true" falsevalue="false" checked="false" label="dontRunDecoys"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
466 -->
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
467 </when>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
468 </conditional>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
469 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
470 <token name="@SEARCH_OPTIONS@">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
471 #if $search.set_search == 'yes'
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
472 -minCharge $search.minCharge
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
473 -maxCharge $search.maxCharge
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
474 -minLength $search.minLength
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
475 -maxLength $search.maxLength
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
476 -minEluteTime $search.minEluteTime
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
477 -maxMissedCleavage $search.maxMissedCleavage
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
478 -minQuantitativeIonNumber $search.minQuantitativeIonNumber
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
479 -minNumOfQuantitativePeaks $search.minNumOfQuantitativePeaks
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
480 -numberOfQuantitativePeaks $search.numberOfQuantitativePeaks
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
481 ## -alpha $search.alpha
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
482 ## -beta $search.beta
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
483 ## -addDecoysToBackground $search.addDecoysToBackground
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
484 ## -dontRunDecoys $search.dontRunDecoys
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
485 #end if
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
486 </token>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
487 <!--
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
488 minNumOfQuantitativePeaks minQuantitativeIonNumber numberOfQuantitativePeaks numberOfReportedPeaksu
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
489 +acquisition (default: overlapping dia)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
490 +addDecoysToBackground (default: false)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
491 +alpha (default: 1.8)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
492 +beta (default: 0.4)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
493 +dontRunDecoys (default: false)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
494 +enzyme (default: trypsin)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
495 +filterPeaklists (default: false)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
496 +fixed (default: C=57.0214635)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
497 +foffset (default: 0)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
498 =frag (default: YONLY)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
499 +ftol (default: 10)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
500 +ftolunits (default: ppm)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
501 +maxCharge (default: 3)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
502 +ftolunits (default: ppm)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
503 +maxCharge (default: 3)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
504 +maxLength (default: 100)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
505 +maxMissedCleavage (default: 1)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
506 +minCharge (default: 2)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
507 +minEluteTime (default: 12)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
508 +minIntensity (default: -1.0)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
509 +minLength (default: 5)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
510 +minNumOfQuantitativePeaks (default: 3)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
511 +minQuantitativeIonNumber (default: 3)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
512 +numberOfQuantitativePeaks (default: 5)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
513 -numberOfReportedPeaks (default: 1)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
514 -numberOfThreadsUsed (default: 12)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
515 +percolatorProteinThreshol (default: 0.01)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
516 +percolatorThreshold (default: 0.01)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
517 +percolatorVersionNumber (default: 3)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
518 +poffset (default: 0)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
519 +precursorIsolationMargin (default: 0)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
520 +precursorWindowSize (default: -1)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
521 +ptol (default: 10)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
522 +ptolunits (default: ppm)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
523 -requireVariableMods (default: false)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
524 -variable (default: -)
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
525 -->
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
526 <xml name="libexport">
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
527 <param argument="-a" type="boolean" truevalue="true" falsevalue="false" checked="false" label="align between files"/>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
528 </xml>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
529 </macros>
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
530 <!--
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
531 e w t x l param
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
532 +:+:+:+:+ i
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
533 +:+:+:+:+ l
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
534 +:+:+:+:+ f
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
535
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
536 +:+:+:+:+ t
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
537 -:+:-:+:- tp
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
538 -:+:-:+:+ a
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
539
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
540 +:+:+:+:+ o
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
541
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
542 +:+:+:+:- acquisition
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
543 -:+:-:+:- addDecoysToBackground
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
544 -:+:-:+:- alpha
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
545 -:+:-:+:- beta
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
546 -:-:-:-:+ blib
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
547 -:+:-:+:- dontRunDecoys
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
548 +:+:+:+:- enzyme
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
549 +:-:+:-:- expectedPeakWidth
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
550 +:+:+:+:- filterPeaklists
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
551 +:+:+:+:+ fixed
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
552 +:+:+:+:+ foffset
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
553 +:+:+:+:- frag
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
554 +:+:+:+:+ ftol
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
555 +:+:+:+:+ ftolunits
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
556 +:-:+:-:- lftol
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
557 +:-:+:-:- lftolunits
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
558 +:-:-:-:- libexport
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
559 +:-:+:-:+ localizationModification
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
560 -:+:-:+:- maxCharge
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
561 -:+:-:+:- maxLength
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
562 -:+:-:+:- maxMissedCleavage
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
563 -:+:-:+:- minCharge
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
564 -:+:-:+:- minEluteTime
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
565 +:+:+:+:- minIntensity
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
566 -:+:-:+:- minLength
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
567 +:+:+:+:+ minNumOfQuantitativePeaks
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
568 +:+:+:+:+ minQuantitativeIonNumber
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
569 +:-:+:-:+ numberOfExtraDecoyLibrariesSearched
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
570 +:+:+:+:+ numberOfQuantitativePeaks
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
571 -:+:-:+:- numberOfReportedPeaks
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
572 -:+:-:+:- numberOfThreadsUsed
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
573 -:-:-:-:+ percolatorLocation
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
574 -:+:-:+:- percolatorProteinThreshol
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
575 +:-:+:-:+ percolatorProteinThreshold
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
576 +:+:+:+:+ percolatorThreshold
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
577 +:+:+:+:- percolatorVersionNumber
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
578 -:-:-:-:+ phospho
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
579 +:+:+:+:- poffset
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
580 +:+:+:+:- precursorIsolationMargin
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
581 +:+:+:+:- precursorWindowSize
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
582 +:+:+:+:- ptol
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
583 +:+:+:+:- ptolunits
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
584 -:+:-:+:- requireVariableMods
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
585 +:-:+:-:- rtWindowInMin
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
586 +:-:+:-:- scoringBreadthType
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
587 -:+:-:+:- variable
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
588 +:-:+:-:- verifyModificationIons
d0202c597434 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 8f99967c46243d2ad661287ce6d17c5824dbc533-dirty"
jjohnson
parents:
diff changeset
589 -->