comparison rnaaliduplex.xml @ 0:d4f6c7ba5f69 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna commit 0065dafe7bbd382bb995b28cc4089c9e4f4eeeb9
author rnateam
date Tue, 06 Dec 2016 12:36:05 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d4f6c7ba5f69
1 <tool id="viennarna_rnaaliduplex" name="@EXECUTABLE@" version="@VERSION@.0">
2 <description>find binding sites of two RNA alignments</description>
3 <macros>
4 <token name="@EXECUTABLE@">RNAaliduplex</token>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements" />
8 <expand macro="stdio" />
9 <expand macro="version_command" />
10 <command>
11 <![CDATA[
12 RNAaliduplex -T $temperature -d $dangling $flagsort --deltaEnergy=$deltaEnergy '$input1' '$input2'
13 $advancedOptions.noconversion
14 $advancedOptions.nolp
15 $advancedOptions.nogu
16 $advancedOptions.noclosinggu
17 $advancedOptions.notetra
18 #if $advancedOptions.nsp
19 --nsp='$advancedOptions.nsp'
20 #end if
21 > '$out_file'
22 ]]>
23 </command>
24 <inputs>
25 <param format="txt" name="input1" type="data" label="Clustal alignment file"/>
26 <param format="txt" name="input2" type="data" label="Clustal alignment file"/>
27 <param name="temperature" type="float" value="37.0" label="Temperature [°C]" help="-T"/>
28 <param argument="--deltaEnergy" type="float" value="0.0" label="Compute suboptimal structures with energy in a certain range of the optimum [kcal/mol]"
29 help="Default is calculation of mfe structure only."/>
30 <param name="dangling" type="select" label="How to treat dangling end energiesHow to treat dangling end energies for bases adjacent to helices in free ends and multi-loops" argument="-d">
31 <option value="0">0: ignore dangling ends</option>
32 <option value="1">1: unpaired bases participate in one dangling end only</option>
33 <option value="2" selected="True">2: unpaired bases participate in all dangling ends</option>
34 <option value="3">3: allow coaxial stacking</option>
35 </param>
36 <param name="flagsort" type="boolean" checked="false" label="Output will be sorted by free energy" truevalue="--sorted" falsevalue="" help="--sorted"/>
37 <section name="advancedOptions" title="Advanced options">
38 <param name="nolp" type="boolean" truevalue="" falsevalue="--noLP" checked="true" label="Allow lonely base-pairs" help="(--noLP)"/>
39 <param name="nogu" type="boolean" truevalue="" falsevalue="--noGU" checked="true" label="Allow GU pairing" help="--noGU"/>
40 <param name="noclosinggu" type="boolean" truevalue="" falsevalue="--noClosingGU" checked="true" label="Allow GU pairing at the ends" help="Allow pairing of G and U at the ends of helices. --noClosingGU"/>
41 <param name="noconversion" type="boolean" truevalue="" falsevalue="--noconv" checked="true" label="Convert Thymine to Uracil (T -> U)" help="Avoids confusion with DNA sequences (--noconv)"/>
42 <param name="notetra" type="boolean" truevalue="" falsevalue="--noTetra" checked="true" label="Allow stabilization for loops, hairpins etc." help=" Include special tabulated stabilizing energies for tri-, tetra- and hexaloop hairpins. Mostly for testing. (--noTetra)"/>
43 <param name="nsp" type="text" value="" label="Allow other pairs in addition to the usual AU,GC,and GU pairs."
44 help="Its argument is a comma separated list of additionally allowed pairs. If the first character is '-' then AB will imply that AB and BA are allowed pairs. e.g. RNAfold -nsp -GA will allow GA and AG pairs. Nonstandard pairs are given 0 stacking energy."
45 argument="--nsp"/>
46 </section>
47 </inputs>
48 <outputs>
49 <data format="dbn" name="out_file"/>
50 </outputs>
51 <tests>
52 <test>
53 <param name="input1" value="rnaaliduplex_input1.clustal"/>
54 <param name="input2" value="rnaaliduplex_input1.clustal"/>
55 <output name="out_file1" file="rnaaliduplex_result1.txt"/>
56 </test>
57 </tests>
58 <help>
59 <![CDATA[
60 **RNAaliduplex**
61
62 The program reads two alignments of RNA sequences in CLUSTAL format and
63 predicts optimal and suboptimal binding sites, hybridization energies and the
64 corresponding structures. The calculation takes only inter-molecular base pairs
65 into account, for the general case use RNAcofold. The use of alignments allows
66 to focus on binding sites that are evolutionary conserved. Note, that the two
67 input alignments need to have an equal number of sequences and the same order,
68 i.e. the 1st sequence in file1 will be hybridized to the 1st in file2 etc.
69
70 The computed binding sites, energies, and structures are written to stdout, one
71 structure per line. Each line consist of: The structure in dot bracket format
72 with a & separating the two strands. The range of the structure in the two
73 sequences in the format "from,to : from,to"; the energy of duplex structure
74 in kcal/mol.
75 The format is especially useful for computing the hybrid structure between a
76 small probe sequence and a long target sequence.
77
78
79
80 -----
81
82 **Input format**
83
84 RNAaliduplex takes two alignment files generated with Clustal (\*.aln).
85
86
87 -----
88
89 **Outputs**
90
91 text output with several secondary structures and its energies
92
93 ]]>
94 </help>
95 <expand macro="citations" />
96 </tool>