changeset 21:93c0e1cc65c6

Uploaded
author nilesh
date Thu, 11 Jul 2013 12:24:45 -0400
parents adc934fb9a76
children d064a3014efd
files junction_annotation.xml
diffstat 1 files changed, 73 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/junction_annotation.xml	Thu Jul 11 12:24:45 2013 -0400
@@ -0,0 +1,73 @@
+<tool id="junction_annotation" name="Junction Annotation">
+	<description>compares detected splice junctions to reference gene model</description>
+	<requirements>
+		<requirement type="package" version="2.15.1">R</requirement>
+		<requirement type="package" version="2.3.7">rseqc</requirement>
+	</requirements>
+	<command interpreter="python"> junction_annotation.py -i $input -o output -r $refgene
+
+		#if $intron.hasIntron
+			-m $intron.min_Intron
+		#end if
+
+	</command>
+	<inputs>
+		<param name="input" type="data" format="bam,sam" label="input bam/sam file" />
+		<param name="refgene" type="data" format="bed" label="reference gene model" />
+		<conditional name="intron">
+			<param name="hasIntron" type="boolean" label="Specify minimum intron length" value="false"/>
+			<when value="true">
+				<param name="min_Intron" type="integer" value="50" label="Minimum intron length (bp, default=50)" />
+			</when>
+		</conditional>
+	</inputs>
+	<outputs>
+		<data format="xls" name="outputxls" from_work_dir="output.junction.xls"/>
+		<data format="r" name="outputr" from_work_dir="output.junction_plot.r" />
+		<data format="pdf" name="outputpdf" from_work_dir="output.splice_events.pdf"/>
+		<data format="pdf" name="outputjpdf" from_work_dir="output.splice_junction.pdf" />
+	</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.
+
+Minimum intron length (default=50)
+	Minimum intron length (bp).
+
+
+Output
+++++++++++++++
+
+1. output.junc.anno.junction.xls:
+- chrom ID
+- start position of junction (coordinate is 0 based)
+- end position of junction (coordinate is 1 based)
+- number of splice events supporting this junction
+- 'annotated', 'complete_novel' or 'partial_novel'.
+2. output.anno.junction_plot.r: R script to generate pie chart
+3. output.splice_junction.pdf: plot of splice junctions
+4. output.splice_events.pdf: plot of splice events
+.. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/junction.png
+
+
+
+
+	</help>
+</tool>