Mercurial > repos > bgruening > rnaz_cluster
comparison rnazCluster.xml @ 0:dd08d42985fb draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/rna_team/rnaz commit d261ddb93500e1ea309845fa3989c87c6312583d-dirty
author | bgruening |
---|---|
date | Wed, 30 Jan 2019 03:58:47 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:dd08d42985fb |
---|---|
1 <tool id="rnaz_cluster" name="RNAz Cluster" version="2.1"> | |
2 <requirements> | |
3 <requirement type="package" version="2.1">rnaz</requirement> | |
4 </requirements> | |
5 <command detect_errors="exit_code"><![CDATA[ | |
6 rnazCluster.pl | |
7 --cutoff $cutoff | |
8 $window_or_loci | |
9 #if $header: | |
10 $header | |
11 #end if | |
12 '$input' | |
13 > '$output' | |
14 ]]></command> | |
15 <inputs> | |
16 <param type="data" name="input" format="text" /> | |
17 <param argument="--cutoff" type="float" value="0.5" label="Only consider hits with RNAz class probality P>cutoff" /> | |
18 <param name="window_or_loci" type="select" label="Print information for window or loci"> | |
19 <option value="--windows">Print information for windows only</option> | |
20 <option value="--loci">Print information for loci only</option> | |
21 </param> | |
22 <param argument="--header" type="boolean" checked="true" truevalue="--header" falsevalue="" label="Print a header explaining the fields of the output" /> | |
23 </inputs> | |
24 <outputs> | |
25 <data name="output" format="data"/> | |
26 </outputs> | |
27 <tests> | |
28 <test> | |
29 <param name="input" value="unknown.rnaz"/> | |
30 <param name="cutoff" value="0"/> | |
31 <output name="output" file="unknown.rnaz.clustered"/> | |
32 </test> | |
33 <test> | |
34 <param name="input" value="tRNA.rnaz"/> | |
35 <param name="window_or_loci" value="loci"/> | |
36 <output name="output" file="tRNA.rnaz.clustered"/> | |
37 </test> | |
38 </tests> | |
39 <help><![CDATA[ | |
40 | |
41 Clusters RNAz windows back into overlapping loci. | |
42 | |
43 Usage: rnazCluster.pl [options] [file] | |
44 | |
45 Options: -c X, --cutoff=X Only consider hits with RNAz class | |
46 probablility P > X (Default:0.5) | |
47 | |
48 -w, --windows -l, --loci Set these flags to print information for | |
49 windows and/or loci in the output. By default, both single windows | |
50 and combined loci are printed. | |
51 | |
52 -d, --header Print a header explaining the fields of the output | |
53 (see below for a detailed description of the fields). | |
54 | |
55 ]]></help> | |
56 | |
57 <citations> | |
58 <citation type="doi">10.1142/9789814295291_0009</citation> | |
59 </citations> | |
60 | |
61 </tool> |