changeset 18:64dc986da596

Uploaded
author nilesh
date Thu, 11 Jul 2013 12:23:50 -0400
parents ce0995c33291
children 8dbd613bd835
files geneBody_coverage2.xml
diffstat 1 files changed, 54 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/geneBody_coverage2.xml	Thu Jul 11 12:23:50 2013 -0400
@@ -0,0 +1,54 @@
+<tool id="geneBody_coverage" name="Gene Body Converage (Bigwig)">
+	<description>
+		Read coverage over gene body.
+	</description>
+	<requirements>
+		<requirement type="package" version="2.15.1">R</requirement>
+		<requirement type="package" version="2.3.7">rseqc</requirement>
+	</requirements>
+	<command interpreter="python">
+		geneBody_coverage2.py -i $input -r $refgene -o output
+	</command>
+	<inputs>
+		<param name="input" type="data" label="Input bigwig file" format="bigwig" />
+		<param name="refgene" type="data" label="Reference Genome" format="bed" />
+	</inputs>
+	<outputs>
+		<data name="outputpdf" format="pdf" from_work_dir="output.geneBodyCoverage.pdf" />
+		<data name="outputr" format="r" from_work_dir="output.geneBodyCoverage_plot.r" />
+		<data name="outputtxt" format="txt" from_work_dir="output.geneBodyCoverage.txt" />
+	</outputs>
+	<help>
+.. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
+
+-----
+
+About RSeQC
++++++++++++
+
+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.
+
+The RSeQC package is licensed under the GNU GPL v3 license.
+
+Inputs
+++++++++++++++
+
+Input BAM/SAM file
+	Alignment file in BAM/SAM format.
+
+Reference gene model
+	Gene Model in BED format.
+
+
+Outputs
+++++++++++++++
+
+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.
+
+Example output:
+	.. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/geneBody_coverage.png
+
+
+
+	</help>
+</tool>
\ No newline at end of file