comparison blockbuster.xml @ 0:6ae946589f04 draft

initial Uploaded
author rnateam
date Sat, 22 Feb 2014 06:21:02 -0500
parents
children 293c1420bcd7
comparison
equal deleted inserted replaced
-1:000000000000 0:6ae946589f04
1 <tool id="blockbuster" name="blockbuster" version="0.1">
2 <description>detects blocks of overlapping reads using a gaussian-distribution approach</description>
3 <requirements>
4 <requirement type="package" version="0.0.1">blockbuster</requirement>
5 </requirements>
6 <command>
7 blockbuster.x
8 -distance $distance
9 -minClusterHeight $minClusterHeight
10 -minBlockHeight $minBlockHeight
11 -scale $scale
12 -merge $merge
13 -tagFilter $tagFilter
14 -print $print
15 $input
16
17 > $output
18 </command>
19 <inputs>
20 <param name="input" type="data" format="bed" label="BED file containing read expressions"/>
21 <param name="distance" type="integer" value="40" size="5" label="minimum distance between two clusters"/>
22 <param name="minClusterHeight" type="float" value="50" size="5" label="minimum height (readno) of a cluster"/>
23 <param name="minBlockHeight" type="float" value="1" size="5" label="minimum height (readno) of a block"/>
24 <param name="scale" type="float" value="0.5" size="5" label="scale stddev for a single read"/>
25 <param name="merge" type="integer" value="0" size="5" label="merge reads with almost similar means"/>
26 <param name="tagFilter" type="integer" value="0" size="5" label="skip tags with expression smaller than this value"/>
27 <param name="print" type="select" label="Type of output" >
28 <option value="1">blocks</option>
29 <option value="2" selected="True">reads</option>
30 </param>
31 </inputs>
32
33 <outputs>
34 <data format="tabular" name="output" label="blockbuster on ${on_string}"/>
35 </outputs>
36 <help>
37
38 .. class:: infomark
39
40 **What it does**
41
42 Blockbuster_ detects blocks of overlapping reads using a gaussian-distribution approach.
43
44
45 Once short read sequences are mapped to a reference genome, one will face the problem of dividing consecutive reads into blocks to detect specific expression patterns. Due to biological variability and sequencing inaccuracies, the read arrangement does not always show exact block boundaries. The blockbuster tool automatically assigns reads to blocks and gives a unique chance to actually see the different origins where the short reads come from.
46
47 .. _Blockbuster: http://hoffmann.bioinf.uni-leipzig.de/LIFE/blockbuster.html
48
49
50 **References**
51
52
53 If you use this program in your work you might want to cite:
54
55 Langenberger D, Bermudez-Santana C, Hertel J, Hoffmann S, Khaitovitch P, Stadler PF: "Evidence for Human microRNA-Offset RNAs in Small RNA Sequencing Data", Bioinformatics (2009) vol. 25 (18) pp. 2298-301
56
57
58 </help>
59 </tool>