comparison PTPredict.xml @ 0:3070d71e0e5c draft

Uploaded
author bgruening
date Thu, 16 Apr 2015 08:37:04 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3070d71e0e5c
1 <?xml version='1.0' encoding='UTF-8'?>
2 <tool id="PTPredict" name="PTPredict" version="2.0.0">
3 <description>predicts the likelihood of peptides to be proteotypic via svm_model which is trained by PTModel</description>
4 <macros>
5 <token name="@EXECUTABLE@">PTPredict</token>
6 <import>macros.xml</import>
7 </macros>
8 <expand macro="stdio"/>
9 <expand macro="requirements"/>
10 <command>PTPredict
11
12 #if $param_in:
13 -in $param_in
14 #end if
15 #if $param_out:
16 -out $param_out
17 #end if
18 #if $param_svm_model:
19 -svm_model $param_svm_model
20 #end if
21 #if $param_max_number_of_peptides:
22 -max_number_of_peptides $param_max_number_of_peptides
23 #end if
24 -threads \${GALAXY_SLOTS:-24}
25 #if $adv_opts.adv_opts_selector=='advanced':
26 #if $adv_opts.param_force:
27 -force
28 #end if
29 #end if
30 </command>
31 <inputs>
32 <param name="param_in" type="data" format="idxml" optional="False" label="input file" help="(-in) "/>
33 <param name="param_svm_model" type="data" format="txt" optional="False" label="svm model in libsvm format (can be produced by PTModel)" help="(-svm_model) "/>
34 <param name="param_max_number_of_peptides" type="integer" value="100000" label="the maximum number of peptides considered at once (bigger number will lead to faster results but needs more memory)" help="(-max_number_of_peptides) &lt;br&gt;"/>
35 <expand macro="advanced_options">
36 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
37 </expand>
38 </inputs>
39 <outputs>
40 <data name="param_out" format="idxml"/>
41 </outputs>
42 <help>**What it does**
43
44 predicts the likelihood of peptides to be proteotypic via svm_model which is trained by PTModel
45
46
47 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_PTPredict.html</help>
48 <expand macro="references"/>
49 </tool>