comparison macros.xml @ 0:e8f7be6a6e59 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dia_umpire commit 5bcb19e47887db334a55235b65eca91c89905fb8
author galaxyp
date Tue, 23 Jan 2018 14:45:50 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e8f7be6a6e59
1 <macros>
2 <token name="@VERSION@">2.1.3</token>
3 <xml name="requirements">
4 <requirements>
5 <requirement type="package" version="2.1.3">dia_umpire</requirement>
6 </requirements>
7 </xml>
8 <xml name="stdio">
9 <stdio>
10 <exit_code range="1:" />
11 </stdio>
12 </xml>
13 <xml name="citations">
14 <citations>
15 <citation type="doi">10.1038/nmeth.3255</citation>
16 <yield />
17 </citations>
18 </xml>
19
20 <xml name="common_se_params">
21 <param name="SE_Resolution" type="integer" value="" optional="true" label="Resolution" >
22 <help>
23 SE.Resolution: Used only if the input spectra are stored in profile mode (i.e. not centroided, e.g. by using "Peak Picking" option in MSConvert when converting raw spectral data to mzXML format).
24 Profile spectra will be centroided using a sliding window. The window is moved across the entire mass range of a spectrum. Only the most intense peak in the window centered at the peak m/z is kept, others are discarded. The window width is calculated based on this parameter as: width = mz / para.Resolution.
25 Recommended value: Depends on the instrument and acquisition settings. Either check raw data to see the real average resolution of peaks in spectra or consult vendor specifications for the instrument. For AB SCIEX TripleTOF 5600 we use 15000-20000.
26 </help>
27 </param>
28
29 <param name="SE_StartCharge" type="integer" value="1" min="1" max="10" optional="true" label="StartCharge">
30 <help>
31 SE.StartCharge: The minimum charge state for MS1 precursor ion to be detected during isotopic peak grouping.
32 </help>
33 </param>
34
35 <param name="SE_EndCharge" type="integer" value="5" min="1" max="10" optional="true" label="EndCharge">
36 <help>
37 SE.EndCharge: The maximum charge state for MS1 precursor ion to be detected during isotopic peak grouping.
38 Recommended value: it is not recommended to set this parameter higher than 5 for typical proteomic experiments, as it is unlikely to observe peptides of higher charge states.
39 </help>
40 </param>
41
42 <param name="SE_MS2StartCharge" type="integer" value="1" min="1" max="10" optional="true" label="MS2StartCharge">
43 <help>
44 SE.MS2StartCharge: The minimum charge state for MS2 unfragmented precursor ion to be detected during isotopic peak grouping.
45 </help>
46 </param>
47
48 <param name="SE_MS2EndCharge" type="integer" value="5" min="1" max="10" optional="true" label="MS2EndCharge">
49 <help>
50 SE.MS2EndCharge: The maximum charge state for MS2 unfragmented precursor ion to be detected during isotopic peak grouping.
51 Recommended value: it is not recommended to set this parameter higher than 5 for typical proteomic experiments, as it is unlikely to observe peptides of higher charge states.
52 </help>
53 </param>
54 </xml>
55
56 <xml name="se_window_params">
57 <conditional name="window">
58 <param name="WindowType" type="select" label="WindowType">
59 <option value="SWATH">SWATH - fixed window size</option>
60 <option value="V_SWATH">V_SWATH - variable window size</option>
61 <option value="MSX">MSX - 2Da isolation window, its position is shuffled randomly until the whole MS1 range is covered</option>
62 <option value="MSE">MSE - as originally implemented in Waters instruments. The full MS1 range is being fragmented at once.</option>
63 </param>
64 <when value="SWATH">
65 <param name="WindowSize" type="integer" value="" optional="true" label="WindowSize">
66 <help>
67 WindowSize: Isolation window size setting for fixed window SWATH. (Please skip this part if the data is from Thermo instrument)
68 Note: The window size is to be specified including overlapping regions. I.e. if your windows are: 399.5-425.5, 424.5 - 450.5, etc., then the window size should be set to 26.
69 </help>
70 </param>
71 </when>
72 <when value="V_SWATH">
73 <!-- should allow a dataset here as well -->
74 <conditional name="window_list">
75 <param name="window_list_src" type="select" label="">
76 <option value="history"></option>
77 <option value="text_entry"></option>
78 </param>
79 <when value="history">
80 <param name="WindowListFile" type="data" format="tabular" label="WindowList">
81 <help><![CDATA[
82 The format should be a tab-delimited list of m/z low and high values, one window per line. Example:
83 <pre>
84 400 451<br>
85 449 600<br>
86 </pre>
87 ]]>
88 </help>
89 </param>
90 </when>
91 <when value="text_entry">
92 <param name="WindowList" type="text" area="True" size="40x40" value="" label="WindowList">
93 <help><![CDATA[
94 The format should be a tab-delimited list of m/z low and high values, one window per line. Example:
95 <pre>
96 400 451<br>
97 449 600<br>
98 </pre>
99 ]]>
100 </help>
101 </param>
102 </when>
103 </conditional>
104 </when>
105 <when value="MSX"/>
106 <when value="MSE"/>
107 </conditional>
108 </xml>
109
110 </macros>