Mercurial > repos > rnateam > viennarna_rnalalifold
diff rnalalifold.xml @ 0:19d6a5fa6bcf 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:35:00 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rnalalifold.xml Tue Dec 06 12:35:00 2016 -0500 @@ -0,0 +1,97 @@ +<tool id="viennarna_rnalalifold" name="@EXECUTABLE@" version="@VERSION@.0"> + <description>Calculate locally stable secondary structures for a set of aligned RNAs</description> + <macros> + <token name="@EXECUTABLE@">RNALalifold</token> + <import>macros.xml</import> + </macros> + <expand macro="requirements" /> + <expand macro="stdio" /> + <expand macro="version_command" /> + <command> +<![CDATA[ + RNALalifold '$input' > '$output' + -T$temperature -d$dangling + -L$span + $mis + #if $varExists('$advancedOptions.nolp') + $advancedOptions.nolp + $advancedOptions.nogu + $advancedOptions.noclosinggu + $advancedOptions.notetra + --cfactor=$advancedOptions.cfactor + --nfactor=$advancedOptions.nfactor + $advancedOptions.ribosum + #end if +]]> + </command> + + <inputs> + <param format="txt" name="input" type="data" label="Clustal file"/> + <param name="span" type="integer" min="0" max="5000" value="60" label="base pair span" help="Maximal distance between two paired bases. (-L)"/> + <param name="temperature" type="float" value="37.0" label="temperature [°C]" help="-T"/> + <param name="dangling" type="select" label="how to treat dangling end energies" help="-d"> + <option value="0">0: ignore dangling ends</option> + <option value="1">1: unpaired bases participate in one dangling end only</option> + <option value="2" selected="True">2: unpaired bases participate in all dangling ends</option> + <option value="3">3: allow coaxial stacking</option> + </param> + <!-- the -p option led to segmentation faults with version 2.1.2 and 2.1.7, it was later removed from verion 2.1.10 --> + <!--<param name="pf" type="boolean" checked="false" truevalue="-p" falsevalue="" label="calculate partition function" help="-p"/>--> + <param name="mis" type="boolean" checked="false" truevalue="--mis" falsevalue="" label="Most Informative Sequence" help="--mis"/> + <conditional name="advancedOptions"> + <param name="advancedSelector" type="select" label="advanced options"> + <option value="basic">basic Options</option> + <option value="advanced">advanced Options</option> + </param> + <when value="advanced"> + <!-- the -cutoff option was removed from version 2.2.10 --> + <param name="nolp" type="boolean" truevalue="" falsevalue="--noLP" checked="true" label="Allow lonely base-pairs" help="(--noLP)"/> + <param name="nogu" type="boolean" truevalue="" falsevalue="--noGU" checked="true" label="Allow GU pairing" help="--noGU"/> + <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"/> + <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)"/> + <param name="cfactor" type="float" value="1.0" label="Weight of the covariance term" help="--cfactor"/> + <param name="nfactor" type="float" value="1.0" label="Penalty for non-compatible sequences in the covariance term" help="--nfactor"/> + <param name="ribosum" type="boolean" truevalue="--ribosum_scoring" falsevalue="" checked="false" label="Use ribosum scoring matrix" help="--ribosum_scoring"/> + </when> + <when value="basic"> + </when> + </conditional> + </inputs> + <outputs> + <data format="txt" name="output" /> + <!-- the program does not seem to generate a dot plot, even though that is implied in the help --> + <!--<data format="tar" name="imagesFile" label="RNALalifold images"/>--> + </outputs> + <tests> + <test> + <param name="input" value="rnalalifold_input1.clustal"/> + <output name="output" file="rnalalifold_result1.txt"/> + </test> + </tests> + <help> +<![CDATA[ + +**RNALalifold** + +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 + + +----- + +**Input format** + +RNALalifold requires one input file +- Clustal file + +------ + +**Outputs** + +- energy of the consensus structures in the clustal file +- several possible postscript images bundled together in a tar file + + +]]> + </help> + <expand macro="citations" /> +</tool>