0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="AdditiveSeries" name="AdditiveSeries" version="2.0.0">
|
|
3 <description>Computes an additive series to quantify a peptide in a set of samples.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">AdditiveSeries</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>AdditiveSeries
|
|
11
|
|
12 -in
|
|
13 #for token in $param_in:
|
|
14 $token
|
|
15 #end for
|
|
16 #if $param_out:
|
|
17 -out $param_out
|
|
18 #end if
|
|
19 #if $param_mz_tolerance:
|
|
20 -mz_tolerance $param_mz_tolerance
|
|
21 #end if
|
|
22 #if $param_rt_tolerance:
|
|
23 -rt_tolerance $param_rt_tolerance
|
|
24 #end if
|
|
25
|
|
26 #if $rep_param_concentrations:
|
|
27 -concentrations
|
|
28 #for token in $rep_param_concentrations:
|
|
29 #if " " in str(token):
|
|
30 "$token.param_concentrations"
|
|
31 #else
|
|
32 $token.param_concentrations
|
|
33 #end if
|
|
34 #end for
|
|
35 #end if
|
|
36 #if $param_feature_rt:
|
|
37 -feature_rt $param_feature_rt
|
|
38 #end if
|
|
39 #if $param_feature_mz:
|
|
40 -feature_mz $param_feature_mz
|
|
41 #end if
|
|
42 #if $param_standard_rt:
|
|
43 -standard_rt $param_standard_rt
|
|
44 #end if
|
|
45 #if $param_standard_mz:
|
|
46 -standard_mz $param_standard_mz
|
|
47 #end if
|
|
48 -threads \${GALAXY_SLOTS:-24}
|
|
49 #if $param_plot_write_gnuplot_output:
|
|
50 -plot:write_gnuplot_output
|
|
51 #end if
|
|
52 #if $param_plot_out_gp:
|
|
53 -plot:out_gp "$param_plot_out_gp"
|
|
54 #end if
|
|
55 #if $adv_opts.adv_opts_selector=='advanced':
|
|
56 #if $adv_opts.param_force:
|
|
57 -force
|
|
58 #end if
|
|
59 #end if
|
|
60 </command>
|
|
61 <inputs>
|
|
62 <param name="param_in" type="data" format="featurexml" multiple="true" optional="False" size="30" label="input files separated by blanks" help="(-in) ">
|
|
63 <sanitizer>
|
|
64 <valid initial="string.printable">
|
|
65 <remove value="'"/>
|
|
66 <remove value="""/>
|
|
67 </valid>
|
|
68 </sanitizer>
|
|
69 </param>
|
|
70 <param name="param_mz_tolerance" type="float" value="1.0" label="Tolerance in m/z dimension" help="(-mz_tolerance) "/>
|
|
71 <param name="param_rt_tolerance" type="float" value="1.0" label="Tolerance in RT dimension" help="(-rt_tolerance) "/>
|
|
72 <repeat name="rep_param_concentrations" min="1" title="param_concentrations">
|
|
73 <param name="param_concentrations" type="text" size="30" value="0" label="List of spiked concentrations" help="(-concentrations) ">
|
|
74 <sanitizer>
|
|
75 <valid initial="string.printable">
|
|
76 <remove value="'"/>
|
|
77 <remove value="""/>
|
|
78 </valid>
|
|
79 </sanitizer>
|
|
80 </param>
|
|
81 </repeat>
|
|
82 <param name="param_feature_rt" type="float" value="-1.0" label="RT position of the feature" help="(-feature_rt) "/>
|
|
83 <param name="param_feature_mz" type="float" value="-1.0" label="m/z position of the feature" help="(-feature_mz) "/>
|
|
84 <param name="param_standard_rt" type="float" value="-1.0" label="RT position of the standard" help="(-standard_rt) "/>
|
|
85 <param name="param_standard_mz" type="float" value="-1.0" label="m/z position of the standard" help="(-standard_mz) "/>
|
|
86 <param name="param_plot_write_gnuplot_output" type="boolean" truevalue="-plot:write_gnuplot_output" falsevalue="" checked="false" optional="True" label="Flag that activates the GNUplot output" help="(-write_gnuplot_output) "/>
|
|
87 <param name="param_plot_out_gp" type="text" size="30" label="base file name (3 files with different extensions are created)" help="(-out_gp) ">
|
|
88 <sanitizer>
|
|
89 <valid initial="string.printable">
|
|
90 <remove value="'"/>
|
|
91 <remove value="""/>
|
|
92 </valid>
|
|
93 </sanitizer>
|
|
94 </param>
|
|
95 <expand macro="advanced_options">
|
|
96 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
97 </expand>
|
|
98 </inputs>
|
|
99 <outputs>
|
|
100 <data name="param_out" format="xml"/>
|
|
101 </outputs>
|
|
102 <help>**What it does**
|
|
103
|
|
104 Computes an additive series to quantify a peptide in a set of samples.
|
|
105
|
|
106
|
|
107 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_AdditiveSeries.html</help>
|
|
108 <expand macro="references"/>
|
|
109 </tool>
|