comparison rnaduplex.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="rnaduplex" name="RNAduplex" version="2.1.6.0">
2 <description>Compute the structure upon hybridization of two RNA strands</description>
3 <expand macro="requirements" />
4 <expand macro="version_command" />
5 <expand macro="stdio" />
6 <macros>
7 <token name="@EXECUTABLE@">RNAduplex</token>
8 <import>macros.xml</import>
9 </macros>
10 <command>
11 <![CDATA[
12 RNAduplex < $input > $tabularFile
13 -T$temperature -d$dangling --deltaEnergy=$denergy
14 #if $varExists('$advancedOptions.noconversion')
15 $advancedOptions.noconversion
16 $advancedOptions.nolp
17 $advancedOptions.nogu
18 $advancedOptions.noclosinggu
19 $advancedOptions.notetra
20 #end if
21 ]]>
22 </command>
23
24 <inputs>
25 <param format="fasta" name="input" type="data" label="Fasta file"/>
26 <param name="temperature" size="6" type="float" value="37.0" label="temperature [°C]" help="-T"/>
27 <param name="dangling" type="select" label="how to treat dangling end energies" help="-d">
28 <option value="0">0: ignore dangling ends</option>
29 <option value="1">1: unpaired bases participate in one dangling end only</option>
30 <option value="2" selected="True">2: unpaired bases participate in all dangling ends</option>
31 <option value="3">3: allow coaxial stacking</option>
32 </param>
33 <param name="denergy" size="6" type="float" value="0.0" label="delta energy range [kcal/mol] for suboptimal structures" help="-deltaEnergy"/>
34 <param name="sorted" type="boolean" truevalue="--sorted" falsevalue="" checked="false" label="Sort by energy" help="--sorted"/>
35
36 <conditional name="advancedOptions">
37 <param name="advancedSelector" type="select" label="advanced options">
38 <option value="basic">basic Options</option>
39 <option value="advanced">advanced Options</option>
40 </param>
41 <when value="advanced">
42 <param name="noconversion" type="boolean" truevalue="--noconv" falsevalue="" checked="false" label="No converstion from T->U" help="--noconv"/>
43 <param name="nolp" type="boolean" truevalue="--noLP" falsevalue="" checked="false" label="No lonely pairs" help="--noLP don't allow lonely pairs."/>
44 <param name="nogu" type="boolean" truevalue="--noGU" falsevalue="" checked="false" label="No GU pairing" help="--noGU don't allow pairing of G and U."/>
45 <param name="noclosinggu" type="boolean" truevalue="--noClosingGU" falsevalue="" checked="false" label="No GU pairing at the ends" help="--noClosingGU don't allow pairing of G and U at the ends of helices."/>
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 **RNAduplex**
58 RNA duplex reads two RNA sequences and computes optimal and suboptimal secondary structures for their hybridization. The calculation is simplified by allowing only inter−molecular base pairs, for the general case use RNAcofold. The computed optimal and suboptimal structure are written to stdout, one structure per line. Suboptimal structures are computed with energy in a certain range of the optimum (kcal/mol). Default is calculation of mfe structure only.
59
60 -----
61
62 **Input format**
63
64 RNAduplex requires one input file in Fasta format. The secondary strucures will be calculated pairwise: 1st sequence with 2nd sequence, 3rd sequence with 4th sequence, etc.
65
66 ------
67
68 **Outputs**
69
70 Each line consist of: The structure in dot bracket format with a "&" separating the two strands. The range of the structure in the two sequences in the format "from,to : from,to"; the energy of duplex structure in kcal/mol. The format is especially useful for computing the hybrid structure between a small probe sequence and a long target sequence.
71
72
73 ]]>
74 </help>
75 <expand macro="requirements" />
76 </tool>