0
|
1 <tool id="rnaplfold" name="RNAplfold" version="2.1.6.0">
|
|
2 <description> predicts RNA secondary structures including pseudoknots</description>
|
|
3 <expand macro="requirements" />
|
|
4 <expand macro="version_command" />
|
|
5 <expand macro="stdio" />
|
|
6 <macros>
|
|
7 <token name="@EXECUTABLE@">RNAplfold</token>
|
|
8 <import>macros.xml</import>
|
|
9 </macros>
|
|
10 <command>
|
|
11 <![CDATA[
|
|
12 RNAplfold < $input
|
|
13 -T$temperature
|
|
14 --dangles=$dangling
|
|
15 --cutoff=$cutoff
|
|
16 --winsize=$winsize
|
|
17 --span=$span
|
|
18 $onthefly
|
|
19 $openingenergies
|
|
20 #if $varExists('$unpairedOption.ulength')
|
|
21 --ulength=$unpairedOption.ulength
|
|
22 #end if
|
|
23
|
|
24 #if $varExists('$advancedOptions.nolp')
|
|
25 $advancedOptions.noconv
|
|
26 $advancedOptions.nolp
|
|
27 $advancedOptions.nogu
|
|
28 $advancedOptions.noclosinggu
|
|
29 $advancedOptions.notetra
|
|
30 #end if
|
|
31 ;ls *_basepairs *_lunp *_openen > files.tmp
|
|
32 ;tar -cf $outputf --files-from=files.tmp
|
|
33
|
|
34 ]]>
|
|
35 </command>
|
|
36
|
|
37 <inputs>
|
|
38 <param format="fasta" name="input" type="data" label="Fasta file"/>
|
|
39 <param name="temperature" size="8" type="float" value="37.0" label="temperature [°C]" help="-T"/>
|
|
40 <param name="dangling" type="select" label="how to treat dangling end energies" help="-d">
|
|
41 <option value="2" selected="true">unpaired bases participate in all dangling ends (2)</option>
|
|
42 <option value="0">ignore dangling ends (0)</option>
|
|
43 <option value="1">unpaired bases participate in one dangling end only (1)</option>
|
|
44 <option value="3">allow coaxial stacking (3)</option>
|
|
45 </param>
|
|
46 <param name="winsize" type="integer" value="70" label="Average pairing probabilities over this windowsize" help="--winsize"/>
|
|
47 <param name="span" type="integer" value="70" label="Maximum seperation between base pairs" help="--span, -L"/>
|
|
48 <param name="cutoff" size="8" type="float" value="0.01" label="Cutoff probability for report on base pairing" help="--cutoff"/>
|
|
49 <param name="onthefly" type="boolean" truevalue="--print_onthefly" falsevalue="" checked="false" label="Print simplified base pair probabilities (_basepairs output)" help="--print_onthefly"/>
|
|
50 <param name="openingenergies" type="boolean" truevalue="--opening_energies" falsevalue="" checked="false" label="Output in logarithm of the probabilities (_openen output)" help="--opening_energies"/>
|
|
51 <conditional name="unpairedOption">
|
|
52 <param name="unpairedSelector" type="select" label="Compute probabilty that region is unpaired (_lunp output)">
|
|
53 <option value="no" selected="true">no</option>
|
|
54 <option value="yes">yes</option>
|
|
55 </param>
|
|
56 <when value="yes">
|
|
57 <param name="ulength" type="integer" value="31" label="Maximal lenght of unpaired region" help="--ulength"/>
|
|
58 </when>
|
|
59 </conditional>
|
|
60 <conditional name="advancedOptions">
|
|
61 <param name="advancedSelector" type="select" label="advanced options">
|
|
62 <option value="basic">basic Options</option>
|
|
63 <option value="advanced">advanced Options</option>
|
|
64 </param>
|
|
65 <when value="advanced">
|
|
66 <param name="noconv" type="boolean" truevalue="--noconv" falsevalue="" checked="false" label="No conversion of T -> U" help="--noconv"/>
|
|
67 <param name="nolp" type="boolean" truevalue="--noLP" falsevalue="" checked="false" label="No lonely pairs" help="--noLP don't allow lonely pairs."/>
|
|
68 <param name="nogu" type="boolean" truevalue="--noGU" falsevalue="" checked="false" label="No GU pairing" help="--noGU don't allow pairing of G and U."/>
|
|
69 <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."/>
|
|
70 <param name="notetra" type="boolean" truevalue="--noTetra" falsevalue="" checked="false" label="No stabilization for loops, hairpins etc." help="--noTetra"/>
|
|
71 </when>
|
|
72 </conditional>
|
|
73 </inputs>
|
|
74 <outputs>
|
|
75 <collection name="matrix_outputs" type="list" label="rna_eps outputs">
|
|
76 <discover_datasets pattern="(?P<designation>.+)_dp\.ps" ext="rna_eps" visible="true"/>
|
|
77 </collection>
|
|
78 <data format="tar" name="outputf"/>
|
|
79 </outputs>
|
|
80 <tests>
|
2
|
81 <test>
|
|
82 <param name="input" value="rnaplfold_input1.fa"/>
|
|
83 <output name="out_file" file="rnaplfold_result1.txt"/>
|
|
84 </test>
|
0
|
85 </tests>
|
|
86 <help>
|
|
87 <![CDATA[
|
|
88
|
|
89 **RNAplfold**
|
|
90
|
|
91 Computes local pair probabilities for base pairs with a maximal span of L. The probabilities are averaged over all windows of size L that contain the base pair. For a sequence of length n and a window size 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 stable RNA structures.
|
|
92
|
|
93
|
|
94 -----
|
|
95
|
|
96 **Input format**
|
|
97
|
|
98 RNAPplfold requires one input file
|
|
99
|
|
100 - Fasta file
|
|
101
|
|
102 ------
|
|
103
|
|
104 **Outputs**
|
|
105
|
|
106 For each structure in the Fasta input a postscript image with dot-plot of the pairing probabilities is generated. Different output is generated with the "--ulength", "--print_onthefly" and "--opening_energies" flags.
|
|
107 The Dot Plot Matrices are stored in a Postscript file.
|
|
108 The other output is packed in a tar file.
|
|
109
|
|
110
|
|
111 ]]>
|
|
112 </help>
|
|
113 <expand macro="requirements" />
|
|
114 </tool>
|