Mercurial > repos > bgruening > peptideshaker
comparison macros.xml @ 21:189820586caf draft
Uploaded
author | iracooke |
---|---|
date | Sun, 14 Dec 2014 22:59:29 -0500 |
parents | |
children | 062d6a04bb95 |
comparison
equal
deleted
inserted
replaced
20:776501ce66d8 | 21:189820586caf |
---|---|
1 <macros> | |
2 <xml name="requirements"> | |
3 <requirements> | |
4 <requirement type="package" version="0.35">peptide_shaker</requirement> | |
5 <requirement type="package" version="1.23">searchgui</requirement> | |
6 </requirements> | |
7 </xml> | |
8 <xml name="stdio"> | |
9 <stdio> | |
10 <exit_code range="1:" level="fatal" description="Job Failed" /> | |
11 <regex match="java.*Exception" level="fatal" description="Java Exception"/> | |
12 <regex match="Could not create the Java virtual machine" level="fatal" description="JVM Error"/> | |
13 </stdio> | |
14 </xml> | |
15 <token name="@GENERAL_PARAMETERS@"> | |
16 -frag_tol "${fragment_tol}" | |
17 -prec_tol "${precursor_ion_tol}" | |
18 -prec_ppm "${precursor_ion_tol_units}" | |
19 -enzyme "${enzyme}" | |
20 #set $fixed_mods_str = $fixed_modifications or '' | |
21 #set $variable_mods_str = $variable_modifications or '' | |
22 #if $fixed_mods_str | |
23 -fixed_mods "$fixed_mods_str" | |
24 #end if | |
25 #if $variable_mods_str | |
26 -variable_mods "$variable_mods_str" | |
27 #end if | |
28 -min_charge $min_charge | |
29 -max_charge $max_charge | |
30 -mc $missed_cleavages | |
31 -fi $forward_ion | |
32 -ri $reverse_ion | |
33 </token> | |
34 | |
35 <xml name="general_options"> | |
36 <param name="precursor_ion_tol_units" type="select" label="Precursor Ion Tolerance Units" | |
37 help="Select based on instrument used, as different machines provide different quality of spectra. ppm is a standard for most precursor ions"> | |
38 <option value="1">Parts per million (ppm)</option> | |
39 <option value="0">Daltons</option> | |
40 </param> | |
41 <param name="precursor_ion_tol" type="float" value="10" label="Percursor Ion Tolerance" | |
42 help="Provide error value for precursor ion, based on instrument used. 10 ppm recommended for Orbitrap instrument"/> | |
43 <param name="fragment_tol" type="float" value="0.5" label="Fragment Tolerance (Daltons)" | |
44 help="Provide error value for fragment ions, based on instrument used"/> | |
45 <param name="enzyme" type="select" label="Enzyme" | |
46 help="Which enzyme was used for protein digest in experiment? In most cases, trypsin is used"> | |
47 <option value="Trypsin">Trypsin</option> | |
48 <option value="Arg-C">Arg-C</option> | |
49 <option value="CNBr">CNBr</option> | |
50 <option value="Chymotrypsin (FYWL)">Chymotrypsin (FYWL)</option> | |
51 <option value="Formic Acid">Formic Acid</option> | |
52 <option value="Lys-C">Lys-C</option> | |
53 <option value="Lys-C, no P rule">Lys-C, no P rule</option> | |
54 <option value="Pepsin A">Pepsin A</option> | |
55 <option value="Trypsin + CNBr">Trypsin + CNBr</option> | |
56 <option value="Trypsin + Chymotrypsin (FYWLKR)">Trypsin + Chymotrypsin (FYWLKR)</option> | |
57 <option value="Trypsin, no P rule">Trypsin, no P rule</option> | |
58 <option value="whole protein">whole protein</option> | |
59 <option value="Asp-N">Asp-N</option> | |
60 <option value="Glu-C">Glu-C</option> | |
61 <option value="Asp-N + Glu-C">Asp-N + Glu-C</option> | |
62 <option value="Top-Down">Top-Down</option> | |
63 <option value="Semi-Tryptic">Semi-Tryptic</option> | |
64 <option value="No enzyme">No enzyme</option> | |
65 <option value="Chymotrypsin, no P rule (FYWL)">Chymotrypsin, no P rule (FYWL)</option> | |
66 <option value="Asp-N (DE)">Asp-N (DE)</option> | |
67 <option value="Glu-C (DE)">Glu-C (DE)</option> | |
68 <option value="Lys-N (K)">Lys-N (K)</option> | |
69 <option value="Thermolysin, no P rule">Thermolysin, no P rule</option> | |
70 <option value="Semi-Chymotrypsin (FYWL)">Semi-Chymotrypsin (FYWL)</option> | |
71 <option value="Semi-Glu-C">Semi-Glu-C</option> | |
72 </param> | |
73 <param name="missed_cleavages" type="integer" value="2" label="Maximum Missed Cleavages" | |
74 help="Allow peptides to contain up to this many missed enzyme cleavage sites."/> | |
75 <param name="fixed_modifications" type="select" label="Fixed Modifications" multiple="true" | |
76 help="Occurs in known places on peptide sequence. Hold the appropriate key while clicking to select multiple items"> | |
77 <options from_file="searchgui_mods.loc"> | |
78 <column name="name" index="0" /> | |
79 <column name="value" index="0" /> | |
80 </options> | |
81 </param> | |
82 <param name="variable_modifications" type="select" label="Variable Modifications" multiple="true" | |
83 help="Can occur anywhere on the peptide sequence; adds additional error to search score. Hold the appropriate key while clicking to select multiple items"> | |
84 <options from_file="searchgui_mods.loc"> | |
85 <column name="name" index="0" /> | |
86 <column name="value" index="0" /> | |
87 </options> | |
88 </param> | |
89 <param name="min_charge" label="Minimum Charge" value="2" type="integer" help="Lowest searched charge value for fragment ions"/> | |
90 <param name="max_charge" label="Maximum Charge" value="4" type="integer" help="Highest searched charge value for fragment ions"/> | |
91 <param name="forward_ion" label="Forward Ion" type="select" help="Searched fragment ion type. Select a, b or c based on collisions induced in experiment"> | |
92 <option value="a">a</option> | |
93 <option value="b" selected="true">b</option> | |
94 <option value="c">c</option> | |
95 </param> | |
96 <param name="reverse_ion" label="Reverse Ion" type="select" help="Searched fragment ion type. Select x, y, or z based on collisions induced in experiment"> | |
97 <option value="x">x</option> | |
98 <option value="y" selected="true">y</option> | |
99 <option value="z">z</option> | |
100 </param> | |
101 </xml> | |
102 | |
103 <xml name="citations"> | |
104 <citations> | |
105 <citation type="doi">10.1186/1471-2105-12-70</citation> | |
106 <citation type="doi">10.1002/pmic.201000595</citation> | |
107 </citations> | |
108 </xml> | |
109 | |
110 </macros> |