0
|
1 <tool id="rnalalifold" name="RNALalifold" version="2.1.6.0">
|
|
2 <description>Calculate locally stable secondary structures for a set of aligned RNAs</description>
|
|
3 <expand macro="requirements" />
|
|
4 <expand macro="version_command" />
|
|
5 <expand macro="stdio" />
|
|
6 <macros>
|
|
7 <token name="@EXECUTABLE@">RNALalifold</token>
|
|
8 <import>macros.xml</import>
|
|
9 </macros>
|
|
10 <command>
|
|
11 <![CDATA[
|
|
12 RNALalifold $input > $output
|
|
13 -T$temperature -d$dangling
|
|
14 -L$span
|
|
15 $mis
|
|
16
|
|
17 #if $varExists('$advancedOptions.nolp')
|
|
18 --cutoff=$advancedOptions.cutoff
|
|
19 $advancedOptions.nolp
|
|
20 $advancedOptions.nogu
|
|
21 $advancedOptions.noclosinggu
|
|
22 $advancedOptions.notetra
|
|
23 --cfactor=$advancedOptions.cfactor
|
|
24 --nfactor=$advancedOptions.nfactor
|
|
25 $advancedOptions.ribosum
|
|
26 #end if
|
|
27 <!--; tar -cf $imagesFile *.ps -->
|
|
28 ]]>
|
|
29 </command>
|
|
30
|
|
31 <inputs>
|
|
32 <param format="clustal" name="input" type="data" label="Clustal file"/>
|
|
33 <param name="span" type="integer" min="0" max="5000" value="60" label="base pair span" help="Maximal distance between two paired bases. (-L)"/>
|
|
34
|
|
35 <param name="temperature" size="6" type="float" value="37.0" label="temperature [°C]" help="-T"/>
|
|
36 <param name="dangling" type="select" label="how to treat dangling end energies" help="-d">
|
|
37 <option value="0">0: ignore dangling ends</option>
|
|
38 <option value="1">1: unpaired bases participate in one dangling end only</option>
|
|
39 <option value="2" selected="True">2: unpaired bases participate in all dangling ends</option>
|
|
40 <option value="3">3: allow coaxial stacking</option>
|
|
41 </param>
|
|
42
|
|
43 <!-- the -p option led to segmentation faults with version 2.1.2 and 2.1.7 -->
|
|
44 <!--<param name="pf" type="boolean" checked="false" truevalue="-p" falsevalue="" label="calculate partition function" help="-p"/>-->
|
|
45
|
|
46 <param name="mis" type="boolean" checked="false" truevalue="--mis" falsevalue="" label="Most Informative Sequence" help="--mis"/>
|
|
47
|
|
48 <conditional name="advancedOptions">
|
|
49 <param name="advancedSelector" type="select" label="advanced options">
|
|
50 <option value="basic">basic Options</option>
|
|
51 <option value="advanced">advanced Options</option>
|
|
52 </param>
|
|
53 <when value="advanced">
|
|
54 <param name="cutoff" type="float" value="0.01" label="cutoff probability for the reporting of the base pairs in the dot plot" help="--cutoff"/>
|
|
55 <param name="nolp" type="boolean" truevalue="--noLP" falsevalue="" checked="false" label="No lonely pairs" help="--noLP don't allow lonely pairs."/>
|
|
56 <param name="nogu" type="boolean" truevalue="--noGU" falsevalue="" checked="false" label="No GU pairing" help="--noGU don't allow pairing of G and U."/>
|
|
57 <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."/>
|
|
58 <param name="notetra" type="boolean" truevalue="--noTetra" falsevalue="" checked="false" label="No stabilization for loops, hairpins etc." help="--noTetra"/>
|
|
59 <param name="cfactor" size="6" type="float" value="1.0" label="Weight of the covariance term" help="--cfactor"/>
|
|
60 <param name="nfactor" size="6" type="float" value="1.0" label="Penalty for non-compatible sequences in the covariance term" help="--nfactor"/>
|
|
61 <param name="ribosum" type="boolean" truevalue="--ribosum_scoring" falsevalue="" checked="false" label="Use ribosum scoring matrix" help="--ribosum_scoring"/>
|
|
62 </when>
|
|
63 </conditional>
|
|
64 </inputs>
|
|
65 <outputs>
|
|
66 <data format="txt" name="output" />
|
|
67 <!-- the program does not seem to generate a dot plot, even though that is implied in the help -->
|
|
68 <!--<data format="tar" name="imagesFile" label="RNALalifold images"/>-->
|
|
69 </outputs>
|
|
70 <tests>
|
|
71 </tests>
|
|
72 <help>
|
|
73 <![CDATA[
|
|
74
|
|
75 **RNALalifold**
|
|
76
|
|
77 Calculates locally stable RNA secondary structure with a maximal base pair span. For a sequence of length n and a base pair span of L the algorithm uses only O(n+L*L) memory and O(n*L*L) CPU time. Thus it is practical to "scan" very large genomes for short RNA
|
|
78
|
|
79
|
|
80 -----
|
|
81
|
|
82 **Input format**
|
|
83
|
|
84 RNALalifold requires one input file
|
|
85 - Clustal file
|
|
86
|
|
87 ------
|
|
88
|
|
89 **Outputs**
|
|
90
|
|
91 - energy of the consensus structures in the clustal file
|
|
92 - several possible postscript images bundled together in a tar file
|
|
93
|
|
94
|
|
95 ]]>
|
|
96 </help>
|
|
97 <expand macro="requirements" />
|
|
98 </tool>
|