0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="RTEvaluation" name="RTEvaluation" version="2.0.0">
|
|
3 <description>Application that evaluates TPs (true positives), TNs, FPs, and FNs for an idXML file with predicted RTs.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">RTEvaluation</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>RTEvaluation
|
|
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_sequences_file:
|
|
19 -sequences_file $param_sequences_file
|
|
20 #end if
|
|
21 #if $param_latex:
|
|
22 -latex
|
|
23 #end if
|
|
24 #if $param_p_value_dim_1:
|
|
25 -p_value_dim_1 $param_p_value_dim_1
|
|
26 #end if
|
|
27 #if $param_p_value_dim_2:
|
|
28 -p_value_dim_2 $param_p_value_dim_2
|
|
29 #end if
|
|
30 -threads \${GALAXY_SLOTS:-24}
|
|
31 #if $adv_opts.adv_opts_selector=='advanced':
|
|
32 #if $adv_opts.param_force:
|
|
33 -force
|
|
34 #end if
|
|
35 #end if
|
|
36 </command>
|
|
37 <inputs>
|
|
38 <param name="param_in" type="data" format="idxml" optional="False" label="input file" help="(-in) "/>
|
|
39 <param name="param_sequences_file" type="data" format="fasta" optional="True" label="Filename of a FASTA file containing protein sequences" help="(-sequences_file) <br>All peptides that are not a substring of a sequence in this file are considered as false"/>
|
|
40 <param name="param_latex" type="boolean" truevalue="-latex" falsevalue="" checked="false" optional="True" label="indicates whether the output file format of the table should be latex or csv" help="(-latex) "/>
|
|
41 <param name="param_p_value_dim_1" type="float" min="0.0" max="1.0" optional="True" value="0.01" label="Significance level of first dimension RT filte" help="(-p_value_dim_1) "/>
|
|
42 <param name="param_p_value_dim_2" type="float" min="0.0" max="1.0" optional="True" value="0.05" label="Significance level of second dimension RT filte" help="(-p_value_dim_2) "/>
|
|
43 <expand macro="advanced_options">
|
|
44 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
45 </expand>
|
|
46 </inputs>
|
|
47 <outputs>
|
|
48 <data name="param_out" format="tabular"/>
|
|
49 </outputs>
|
|
50 <help>**What it does**
|
|
51
|
|
52 Application that evaluates TPs (true positives), TNs, FPs, and FNs for an idXML file with predicted RTs.
|
|
53
|
|
54
|
|
55 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_RTEvaluation.html</help>
|
|
56 <expand macro="references"/>
|
|
57 </tool>
|