comparison geneBody_coverage.xml @ 1:dc3b3b88fbab

first commit
author nilesh
date Thu, 18 Jul 2013 11:27:43 -0500
parents
children
comparison
equal deleted inserted replaced
0:0d133c7c387e 1:dc3b3b88fbab
1 <tool id="geneBody_coverage" name="Gene Body Converage (BAM)">
2 <description>
3 Read coverage over gene body.
4 </description>
5 <requirements>
6 <requirement type="package" version="2.15.1">R</requirement>
7 <requirement type="package" version="2.3.7">rseqc</requirement>
8 </requirements>
9 <command interpreter="python">
10 geneBody_coverage.py -i $input -r $refgene -o output
11 </command>
12 <inputs>
13 <param name="input" type="data" label="Input .bam file" format="bam" />
14 <param name="refgene" type="data" label="Reference Genome" format="bed" />
15 </inputs>
16 <outputs>
17 <data name="outputpdf" format="pdf" from_work_dir="output.geneBodyCoverage.pdf" />
18 <data name="outputr" format="r" from_work_dir="output.geneBodyCoverage_plot.r" />
19 <data name="outputtxt" format="txt" from_work_dir="output.geneBodyCoverage.txt" />
20 </outputs>
21 <tests>
22 <test>
23 <param name="input" value="Pairend_nonStrandSpecific_36mer_Human_hg19.bam" />
24 <param name="refgene" value="hg19_RefSeq.bed" />
25 <output name="outputpdf" file="gbcout.geneBodyCoverage.pdf" />
26 <output name="outputr" file="gbcout.geneBodyCoverage_plot.r" />
27 <output name="outputtxt" file="gbcout.geneBodyCoverage.txt" />
28 </test>
29 </tests>
30 <help>
31 .. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
32
33 -----
34
35 About RSeQC
36 +++++++++++
37
38 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.
39
40 The RSeQC package is licensed under the GNU GPL v3 license.
41
42 Inputs
43 ++++++++++++++
44
45 Input BAM/SAM file
46 Alignment file in BAM/SAM format.
47
48 Reference gene model
49 Gene Model in BED format.
50
51
52 Outputs
53 ++++++++++++++
54
55 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.
56
57 Example output:
58 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/geneBody_coverage.png
59
60
61
62 </help>
63 </tool>