Mercurial > repos > rnateam > vienna_rna
comparison rnaeval.xml @ 0:78d673470d45 draft
Imported from capsule None
author | rnateam |
---|---|
date | Wed, 04 Feb 2015 12:05:27 -0500 |
parents | |
children | 5e58cbf27a05 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:78d673470d45 |
---|---|
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> | |
54 </tests> | |
55 <help> | |
56 <![CDATA[ | |
57 **RNAeval** | |
58 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. | |
59 | |
60 ----- | |
61 | |
62 **Input format** | |
63 | |
64 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. | |
65 | |
66 | |
67 ------ | |
68 | |
69 **Outputs** | |
70 | |
71 First line: the sequence, second line: the structure with its corresponding energy | |
72 | |
73 | |
74 ]]> | |
75 </help> | |
76 <expand macro="requirements" /> | |
77 </tool> |