comparison rseqc/junction_annotation.xml @ 27:5dbd20d3d623

Uploaded
author nilesh
date Thu, 11 Jul 2013 12:28:04 -0400
parents
children
comparison
equal deleted inserted replaced
26:9a33e347a3de 27:5dbd20d3d623
1 <tool id="junction_annotation" name="Junction Annotation">
2 <description>compares detected splice junctions to reference gene model</description>
3 <command interpreter="python"> /home/nilesh/RSeQC-2.3.3/scripts/junction_annotation.py -i $input -o output -r $refgene
4
5 #if $intron.hasIntron
6 -m $intron.min_Intron
7 #end if
8
9 </command>
10 <inputs>
11 <param name="input" type="data" format="bam,sam" label="input bam/sam file" />
12 <param name="refgene" type="data" format="bed" label="reference gene model" />
13 <conditional name="intron">
14 <param name="hasIntron" type="boolean" label="Specify minimum intron length" value="false"/>
15 <when value="true">
16 <param name="min_Intron" type="integer" value="50" label="Minimum intron length (bp, default=50)" />
17 </when>
18 </conditional>
19 </inputs>
20 <outputs>
21 <data format="xls" name="outputxls" from_work_dir="output.junction.xls"/>
22 <data format="r" name="outputr" from_work_dir="output.junction_plot.r" />
23 <data format="pdf" name="outputpdf" from_work_dir="output.splice_events.pdf"/>
24 <data format="pdf" name="outputjpdf" from_work_dir="output.splice_junction.pdf" />
25 </outputs>
26 <help>
27 .. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
28
29 -----
30
31 About RSeQC
32 +++++++++++
33
34 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.
35
36 The RSeQC package is licensed under the GNU GPL v3 license.
37
38 Inputs
39 ++++++++++++++
40
41 Input BAM/SAM file
42 Alignment file in BAM/SAM format.
43
44 Reference gene model
45 Gene model in BED format.
46
47 Minimum intron length (default=50)
48 Minimum intron length (bp).
49
50
51 Output
52 ++++++++++++++
53
54 1. output.junc.anno.junction.xls:
55 - chrom ID
56 - start position of junction (coordinate is 0 based)
57 - end position of junction (coordinate is 1 based)
58 - number of splice events supporting this junction
59 - 'annotated', 'complete_novel' or 'partial_novel'.
60 2. output.anno.junction_plot.r: R script to generate pie chart
61 3. output.splice_junction.pdf: plot of splice junctions
62 4. output.splice_events.pdf: plot of splice events
63 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/junction.png
64
65
66
67
68 </help>
69 </tool>