Mercurial > repos > rnateam > vienna_rna
comparison rnapdist.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="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"/> | |
65 <data format="txt" name="dotplot"> | |
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> | |
71 </tests> | |
72 <help> | |
73 <![CDATA[ | |
74 | |
75 **RNApdist** | |
76 | |
77 RNApdist calculates structure distances between the thermodynamic ensembles of the secondary structures of RNA sequences. | |
78 | |
79 ----- | |
80 | |
81 **Input format** | |
82 | |
83 RNApdist requires one input file | |
84 - Fasta file | |
85 | |
86 ------ | |
87 | |
88 **Outputs** | |
89 | |
90 - output of alignment scores and alignments (if -B option is selected) | |
91 - dot plot matrices in postscript format bundled together in a tar file | |
92 | |
93 ]]> | |
94 </help> | |
95 <expand macro="requirements" /> | |
96 </tool> |