comparison geneBody_coverage2.xml @ 48:2e6190c29c54 draft

Upload tar.gz again - toolshed removed all files (grrr...)
author lparsons
date Tue, 21 Apr 2015 10:27:06 -0400
parents eb339c5849bb
children 6b33e31bda10
comparison
equal deleted inserted replaced
47:10d30c88fe05 48:2e6190c29c54
1 <tool id="rseqc_geneBody_coverage2" name="Gene Body Converage (Bigwig)" version="2.4">
2 <description>
3 Read coverage over gene body
4 </description>
5 <requirements>
6 <requirement type="package" version="3.0.3">R</requirement>
7 <requirement type="package" version="1.7.1">numpy</requirement>
8 <requirement type="package" version="2.4">rseqc</requirement>
9 </requirements>
10 <command>
11 geneBody_coverage2.py -i $input -r $refgene -o output
12 </command>
13 <stdio>
14 <exit_code range="1:" level="fatal" description="An error occured during execution, see stderr and stdout for more information" />
15 <regex match="[Ee]rror" source="both" description="An error occured during execution, see stderr and stdout for more information" />
16 </stdio>
17 <inputs>
18 <param name="input" type="data" label="Input bigwig file" format="bigwig" />
19 <param name="refgene" type="data" label="Reference Genome" format="bed" />
20 </inputs>
21 <outputs>
22 <data name="outputpdf" format="pdf" from_work_dir="output.geneBodyCoverage.pdf" label="${tool.name} on ${on_string} (PDF)" />
23 <data name="outputr" format="txt" from_work_dir="output.geneBodyCoverage_plot.r" label="${tool.name} on ${on_string} (R Script)" />
24 <data name="outputtxt" format="txt" from_work_dir="output.geneBodyCoverage.txt" label="${tool.name} on ${on_string} (Text)" />
25 </outputs>
26 <help>
27 geneBody_coverage2.py
28 +++++++++++++++++++++
29
30 Similar to geneBody_coverage.py. This module takes bigwig instead of BAM as input, and thus
31 requires much less memory. The BigWig file could be arbitrarily large.
32
33
34 Inputs
35 ++++++++++++++
36
37 Input BAM/SAM file
38 Alignment file in BAM/SAM format.
39
40 Reference gene model
41 Gene Model in BED format.
42
43
44 Outputs
45 ++++++++++++++
46
47 Read coverage over gene body. This module is used to check if reads coverage is uniform and if there is any 5’/3’ bias. This module scales all transcripts to 100 nt and calculates the number of reads covering each nucleotide position. Finally, it generates a plot illustrating the coverage profile along the gene body. NOTE: this module requires lots of memory for large BAM files, because it load the entire BAM file into memory. We add another script "geneBody_coverage2.py" into v2.3.1 which takes bigwig (instead of BAM) as input. It only use 200M RAM, but users need to convert BAM into WIG, and then WIG into BigWig.
48
49 Example output:
50 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/geneBody_coverage.png
51 :height: 600 px
52 :width: 600 px
53 :scale: 80 %
54
55 -----
56
57 About RSeQC
58 +++++++++++
59
60 The RSeQC_ package provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. "Basic modules" quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while "RNA-seq specific modules" investigate sequencing saturation status of both splicing junction detection and expression estimation, mapped reads clipping profile, mapped reads distribution, coverage uniformity over gene body, reproducibility, strand specificity and splice junction annotation.
61
62 The RSeQC package is licensed under the GNU GPL v3 license.
63
64 .. image:: http://rseqc.sourceforge.net/_static/logo.png
65
66 .. _RSeQC: http://rseqc.sourceforge.net/
67
68
69
70 </help>
71 </tool>