0
|
1 <tool id="rnapdist" name="RNApdist" version="2.1.6.0">
|
|
2 <description>Calculate distances between thermodynamic RNA secondary structure ensembles
|
|
3 </description>
|
|
4 <expand macro="requirements" />
|
|
5 <expand macro="version_command" />
|
|
6 <expand macro="stdio" />
|
|
7 <macros>
|
|
8 <token name="@EXECUTABLE@">RNApdist</token>
|
|
9 <import>macros.xml</import>
|
|
10 </macros>
|
|
11 <command>
|
|
12 <![CDATA[
|
|
13 RNApdist < $input > $output
|
|
14 --compare=$compare
|
|
15 -T$temperature -d$dangling
|
|
16 $backtrack
|
|
17
|
|
18 #if $varExists('$advancedOptions.nolp')
|
|
19 $advancedOptions.noconv
|
|
20 $advancedOptions.nolp
|
|
21 $advancedOptions.nogu
|
|
22 $advancedOptions.noclosinggu
|
|
23 $advancedOptions.notetra
|
|
24 #end if
|
|
25
|
|
26 #if $backtrack and str($compare)=="m"
|
|
27 ; cat backtrack.file >> $outfile
|
|
28 #end if
|
|
29
|
|
30 ]]>
|
|
31 </command>
|
|
32
|
|
33 <inputs>
|
|
34 <param format="fasta" name="input" type="data" label="Fasta file"/>
|
|
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 <param name="compare" type="select" label="Comparison Option" help="-d">
|
|
43 <option value="p" selected="True">p: pairwise (1st with 2nd, 3rd with 4th, ...)</option>
|
|
44 <option value="m">m: matrix (each with each, output in matrix form)</option>
|
|
45 <option value="f" >f: first (1st with 2nd, 1st with 3rd, ...)</option>
|
|
46 <option value="c">c: continuous (1st with 2nd, 2nd with 3rd, ...)</option>
|
|
47 </param>
|
|
48 <param name="backtrack" type="boolean" checked="false" truevalue="--backtrack" falsevalue="" label="Print an alignment" help="--backtrack"/>
|
|
49 <conditional name="advancedOptions">
|
|
50 <param name="advancedSelector" type="select" label="advanced options">
|
|
51 <option value="basic">basic Options</option>
|
|
52 <option value="advanced">advanced Options</option>
|
|
53 </param>
|
|
54 <when value="advanced">
|
|
55 <param name="noconv" type="boolean" truevalue="--noconv" falsevalue="" checked="false" label="No conversion of T -> U" help="--noconv"/>
|
|
56 <param name="nolp" type="boolean" truevalue="--noLP" falsevalue="" checked="false" label="No lonely pairs" help="--noLP don't allow lonely pairs."/>
|
|
57 <param name="nogu" type="boolean" truevalue="--noGU" falsevalue="" checked="false" label="No GU pairing" help="--noGU don't allow pairing of G and U."/>
|
|
58 <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."/>
|
|
59 <param name="notetra" type="boolean" truevalue="--noTetra" falsevalue="" checked="false" label="No stabilization for loops, hairpins etc." help="--noTetra"/>
|
|
60 </when>
|
|
61 </conditional>
|
|
62 </inputs>
|
|
63 <outputs>
|
|
64 <data format="txt" name="output"/>
|
2
|
65 <data format="txt" name="dotplot"/>
|
0
|
66 <collection name="matrix_outputs" type="list" label="rna_eps outputs">
|
|
67 <discover_datasets pattern="(?P<designation>.+)_dp\.ps" ext="rna_eps" visible="true"/>
|
|
68 </collection>
|
|
69 </outputs>
|
|
70 <tests>
|
2
|
71 <test>
|
|
72 <param name="input" value="rnapdist_input1.fa"/>
|
|
73 <output name="out_file" file="rnapdist_result1.txt"/>
|
|
74 </test>
|
0
|
75 </tests>
|
|
76 <help>
|
|
77 <![CDATA[
|
|
78
|
|
79 **RNApdist**
|
|
80
|
|
81 RNApdist calculates structure distances between the thermodynamic ensembles of the secondary structures of RNA sequences.
|
|
82
|
|
83 -----
|
|
84
|
|
85 **Input format**
|
|
86
|
|
87 RNApdist requires one input file
|
|
88 - Fasta file
|
|
89
|
|
90 ------
|
|
91
|
|
92 **Outputs**
|
|
93
|
|
94 - output of alignment scores and alignments (if -B option is selected)
|
|
95 - dot plot matrices in postscript format bundled together in a tar file
|
|
96
|
|
97 ]]>
|
|
98 </help>
|
|
99 <expand macro="requirements" />
|
|
100 </tool>
|