0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="RTModel" name="RTModel" version="1.12.0">
|
|
3 <description>Trains a model for the retention time prediction of peptides from a training set.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">RTModel</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>RTModel
|
|
11
|
|
12 -in ${param_in}
|
|
13 -in_positive ${param_in_positive}
|
|
14 -in_negative ${param_in_negative}
|
|
15 -out ${param_out}
|
|
16 -svm_type ${param_svm_type}
|
|
17 -nu ${param_nu}
|
|
18 -p ${param_p}
|
|
19 -c ${param_c}
|
|
20 -kernel_type ${param_kernel_type}
|
|
21 -degree ${param_degree}
|
|
22 -border_length ${param_border_length}
|
|
23 -max_std ${param_max_std}
|
|
24 -k_mer_length ${param_k_mer_length}
|
|
25 -sigma ${param_sigma}
|
|
26 -total_gradient_time ${param_total_gradient_time}
|
|
27 ${param_first_dim_rt}
|
|
28 ${param_additive_cv}
|
|
29 -threads \${GALAXY_SLOTS:-24}
|
|
30 ${param_skip_cv}
|
|
31 -cv:number_of_runs ${param_number_of_runs}
|
|
32 -cv:number_of_partitions ${param_number_of_partitions}
|
|
33 -cv:degree_start ${param_degree_start}
|
|
34 -cv:degree_step_size ${param_degree_step_size}
|
|
35 -cv:degree_stop ${param_degree_stop}
|
|
36 -cv:p_start ${param_p_start}
|
|
37 -cv:p_step_size ${param_p_step_size}
|
|
38 -cv:p_stop ${param_p_stop}
|
|
39 -cv:c_start ${param_c_start}
|
|
40 -cv:c_step_size ${param_c_step_size}
|
|
41 -cv:c_stop ${param_c_stop}
|
|
42 -cv:nu_start ${param_nu_start}
|
|
43 -cv:nu_step_size ${param_nu_step_size}
|
|
44 -cv:nu_stop ${param_nu_stop}
|
|
45 -cv:sigma_start ${param_sigma_start}
|
|
46 -cv:sigma_step_size ${param_sigma_step_size}
|
|
47 -cv:sigma_stop ${param_sigma_stop}
|
|
48 </command>
|
|
49 <inputs>
|
|
50 <param name="param_in" type="data" format="idXML,txt" optional="True" label="This is the name of the input file (RT prediction). It is assumed that the file type is idXML. Alternatively you can provide a .txt file having a sequence and the corresponding rt per line.#br#" help="(-in)"/>
|
|
51 <param name="param_in_positive" type="data" format="idXML" optional="True" label="input file with positive examples (peptide separation prediction)#br#" help="(-in_positive)"/>
|
|
52 <param name="param_in_negative" type="data" format="idXML" optional="True" label="input file with negative examples (peptide separation prediction)#br#" help="(-in_negative)"/>
|
|
53 <param name="param_svm_type" type="select" optional="True" value="NU_SVR" label="the type of the svm (NU_SVR or EPSILON_SVR for RT prediction, automatically set#br#to C_SVC for separation prediction)#br#" help="(-svm_type)">
|
|
54 <option value="NU_SVR">NU_SVR</option>
|
|
55 <option value="NU_SVC">NU_SVC</option>
|
|
56 <option value="EPSILON_SVR">EPSILON_SVR</option>
|
|
57 <option value="C_SVC">C_SVC</option>
|
|
58 </param>
|
|
59 <param name="param_nu" type="float" min="0.0" max="1.0" optional="True" value="0.5" label="the nu parameter [0..1] of the svm (for nu-SVR)" help="(-nu)"/>
|
|
60 <param name="param_p" type="float" value="0.1" label="the epsilon parameter of the svm (for epsilon-SVR)" help="(-p)"/>
|
|
61 <param name="param_c" type="float" value="1.0" label="the penalty parameter of the svm" help="(-c)"/>
|
|
62 <param name="param_kernel_type" type="select" optional="True" value="OLIGO" label="the kernel type of the svm" help="(-kernel_type)">
|
|
63 <option value="LINEAR">LINEAR</option>
|
|
64 <option value="RBF">RBF</option>
|
|
65 <option value="POLY">POLY</option>
|
|
66 <option value="OLIGO">OLIGO</option>
|
|
67 </param>
|
|
68 <param name="param_degree" type="integer" min="1" optional="True" value="1" label="the degree parameter of the kernel function of the svm (POLY kernel)#br#" help="(-degree)"/>
|
|
69 <param name="param_border_length" type="integer" min="1" optional="True" value="22" label="length of the POBK" help="(-border_length)"/>
|
|
70 <param name="param_max_std" type="float" min="0.0" optional="True" value="10.0" label="max standard deviation for a peptide to be included (if there are several ones for one peptide string)(median is taken)" help="(-max_std)"/>
|
|
71 <param name="param_k_mer_length" type="integer" min="1" optional="True" value="1" label="k_mer length of the POBK" help="(-k_mer_length)"/>
|
|
72 <param name="param_sigma" type="float" value="5.0" label="sigma of the POBK" help="(-sigma)"/>
|
|
73 <param name="param_total_gradient_time" type="float" min="1e-05" optional="True" value="1.0" label="the time (in seconds) of the gradient (only for RT prediction)" help="(-total_gradient_time)"/>
|
|
74 <param name="param_first_dim_rt" type="boolean" truevalue="-first_dim_rt true" falsevalue="-first_dim_rt false" checked="false" optional="True" label="if set the model will be built for first_dim_rt" help="(-first_dim_rt)"/>
|
|
75 <param name="param_additive_cv" type="boolean" truevalue="-additive_cv true" falsevalue="-additive_cv false" checked="false" optional="True" label="if the step sizes should be interpreted additively (otherwise the actual value is multiplied#br#with the step size to get the new value" help="(-additive_cv)"/>
|
|
76 <param name="param_skip_cv" type="boolean" truevalue="-cv:skip_cv true" falsevalue="-cv:skip_cv false" checked="false" optional="True" label="Set to enable Cross-Validation or set to true if the model should just be trained with 1 set of specified parameters." help="(-skip_cv)"/>
|
|
77 <param name="param_number_of_runs" type="integer" min="1" optional="True" value="1" label="number of runs for the CV (each run creates a new random partition of the data)" help="(-number_of_runs)"/>
|
|
78 <param name="param_number_of_partitions" type="integer" min="2" optional="True" value="10" label="number of CV partitions" help="(-number_of_partitions)"/>
|
|
79 <param name="param_degree_start" type="integer" min="1" optional="True" value="1" label="starting point of degree" help="(-degree_start)"/>
|
|
80 <param name="param_degree_step_size" type="integer" value="2" label="step size point of degree" help="(-degree_step_size)"/>
|
|
81 <param name="param_degree_stop" type="integer" value="4" label="stopping point of degree" help="(-degree_stop)"/>
|
|
82 <param name="param_p_start" type="float" value="1.0" label="starting point of p" help="(-p_start)"/>
|
|
83 <param name="param_p_step_size" type="float" value="10.0" label="step size point of p" help="(-p_step_size)"/>
|
|
84 <param name="param_p_stop" type="float" value="1000.0" label="stopping point of p" help="(-p_stop)"/>
|
|
85 <param name="param_c_start" type="float" value="1.0" label="starting point of c" help="(-c_start)"/>
|
|
86 <param name="param_c_step_size" type="float" value="10.0" label="step size of c" help="(-c_step_size)"/>
|
|
87 <param name="param_c_stop" type="float" value="1000.0" label="stopping point of c" help="(-c_stop)"/>
|
|
88 <param name="param_nu_start" type="float" min="0.0" max="1.0" optional="True" value="0.3" label="starting point of nu" help="(-nu_start)"/>
|
|
89 <param name="param_nu_step_size" type="float" value="1.2" label="step size of nu" help="(-nu_step_size)"/>
|
|
90 <param name="param_nu_stop" type="float" min="0.0" max="1.0" optional="True" value="0.7" label="stopping point of nu" help="(-nu_stop)"/>
|
|
91 <param name="param_sigma_start" type="float" value="1.0" label="starting point of sigma" help="(-sigma_start)"/>
|
|
92 <param name="param_sigma_step_size" type="float" value="1.3" label="step size of sigma" help="(-sigma_step_size)"/>
|
|
93 <param name="param_sigma_stop" type="float" value="15.0" label="stopping point of sigma" help="(-sigma_stop)"/>
|
|
94 </inputs>
|
|
95 <outputs>
|
|
96 <data name="param_out" label="output file: the model in libsvm format" format="txt"/>
|
|
97 </outputs>
|
|
98 <help>**What it does**
|
|
99
|
|
100 Trains a model for the retention time prediction of peptides from a training set.
|
|
101
|
|
102
|
|
103 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_RTModel.html
|
|
104
|
|
105 @REFERENCES@
|
|
106 </help>
|
|
107 </tool>
|