0
|
1 <tool id="rnaeval" name="RNAeval" version="2.1.6.0">
|
|
2 <description>Calculate energy of RNA sequences with given secondary structure</description>
|
|
3 <expand macro="requirements" />
|
|
4 <expand macro="version_command" />
|
|
5 <expand macro="stdio" />
|
|
6 <macros>
|
|
7 <token name="@EXECUTABLE@">RNAeval</token>
|
|
8 <import>macros.xml</import>
|
|
9 </macros>
|
|
10 <command>
|
|
11 <![CDATA[
|
|
12 RNAeval < $input > $tabularFile
|
|
13 -T$temperature -d$dangling
|
|
14 #if $varExists('$advancedOptions.noconversion')
|
|
15 $advancedOptions.noconversion
|
|
16 $advancedOptions.verbose
|
|
17 $advancedOptions.gquad
|
|
18 $advancedOptions.circ
|
|
19 $advancedOptions.logml
|
|
20 $advancedOptions.notetra
|
|
21 #end if
|
|
22 ]]>
|
|
23 </command>
|
|
24
|
|
25 <inputs>
|
|
26 <param format="text" name="input" type="data" label="Input file"/>
|
|
27 <param name="temperature" size="6" type="float" value="37.0" label="temperature [°C]" help="-T"/>
|
|
28 <param name="dangling" type="select" label="how to treat dangling end energies" help="-d">
|
|
29 <option value="0">0: ignore dangling ends</option>
|
|
30 <option value="1">1: unpaired bases participate in one dangling end only</option>
|
|
31 <option value="2" selected="True">2: unpaired bases participate in all dangling ends</option>
|
|
32 <option value="3">3: allow coaxial stacking</option>
|
|
33 </param>
|
|
34
|
|
35 <conditional name="advancedOptions">
|
|
36 <param name="advancedSelector" type="select" label="advanced options">
|
|
37 <option value="basic">basic Options</option>
|
|
38 <option value="advanced">advanced Options</option>
|
|
39 </param>
|
|
40 <when value="advanced">
|
|
41 <param name="noconversion" type="boolean" truevalue="--noconv" falsevalue="" checked="false" label="No converstion from T->U" help="--noconv"/>
|
|
42 <param name="verbose" type="boolean" truevalue="--verbose" falsevalue="" checked="false" label="Print out energy of each loop in the structure." help="--verbose"/>
|
|
43 <param name="gquad" type="boolean" truevalue="--gquad" falsevalue="" checked="false" label="G-quadruplex formation prediction" help="--gquad"/>
|
|
44 <param name="circ" type="boolean" truevalue="--circ" falsevalue="" checked="false" label="Assume circular RNA" help="--circ"/>
|
|
45 <param name="logml" type="boolean" truevalue="--logML" falsevalue="" checked="false" label="Logarithmic energy functions for multi-loops" help="--logML"/>
|
|
46 <param name="notetra" type="boolean" truevalue="--noTetra" falsevalue="" checked="false" label="No stabilization for loops, hairpins etc." help="--noTetra"/>
|
|
47 </when>
|
|
48 </conditional>
|
|
49 </inputs>
|
|
50 <outputs>
|
|
51 <data format="txt" name="tabularFile"/>
|
|
52 </outputs>
|
|
53 <tests>
|
2
|
54 <test>
|
|
55 <param name="input" value="rnaeval_input1.fas"/>
|
|
56 <output name="out_file" file="rnaeval_result1.txt"/>
|
|
57 </test>
|
0
|
58 </tests>
|
|
59 <help>
|
|
60 <![CDATA[
|
|
61 **RNAeval**
|
|
62 RNAeval evaluates the free energy of an RNA molecule in fixed secondary structure. Sequences and structures are read alternately from stdin. The energy in Kcal/Mol is written to stdout.
|
|
63
|
|
64 -----
|
|
65
|
|
66 **Input format**
|
|
67
|
|
68 RNAeval requires one input file in a format similar to the Fasta format. The secondary strucures should be added after the sequence in dot-bracket notation. Sequence and structure can be interupted by an '&' to calculate the co-folding of two RNA-strands.
|
|
69
|
|
70
|
|
71 ------
|
|
72
|
|
73 **Outputs**
|
|
74
|
|
75 First line: the sequence, second line: the structure with its corresponding energy
|
|
76
|
|
77
|
|
78 ]]>
|
|
79 </help>
|
|
80 <expand macro="requirements" />
|
|
81 </tool>
|