comparison RPKM_count.xml @ 29:907d4b021ff6

Uploaded
author nilesh
date Thu, 11 Jul 2013 12:31:33 -0400
parents
children cc5eaa9376d8
comparison
equal deleted inserted replaced
28:6e438a559a10 29:907d4b021ff6
1 <tool id="RPKM_count" name="RPKM Count">
2 <description>calculates raw count and RPKM values for transcript at exon, intron, and mRNA level</description>
3 <requirements>
4 <requirement type="package" version="0.1.18">samtools</requirement>
5 <requirement type="package" version="2.3.7">rseqc</requirement>
6 </requirements>
7 <command interpreter="python"> samtoolshelper.py RPKM_count.py -i $input -o output -r $refgene
8
9 #if $nx
10 -x
11 #end if
12
13 #if str($strand_type.strand_specific) == "pair"
14 -d
15 #if str($strand_type.pair_type) == "sd"
16 '1++,1--,2+-,2-+'
17 #else
18 '1+-,1-+,2++,2--'
19 #end if
20 #end if
21
22 #if str($strand_type.strand_specific) == "single"
23 -d
24 #if str($strand_type.single_type) == "s"
25 '++,--'
26 #else
27 '+-,-+'
28 #end if
29 #end if
30
31 #if $skiphits
32 -u
33 #end if
34
35 #if $onlyexonic
36 -e
37 #end if
38
39 </command>
40 <inputs>
41 <param name="input" type="data" format="bam" label="input bam/sam file" />
42 <param name="refgene" type="data" format="bed" label="Reference gene model" />
43 <conditional name="strand_type">
44 <param name="strand_specific" type="select" label="Strand-specific?" value="None">
45 <option value="none">None</option>
46 <option value="pair">Pair-End RNA-seq</option>
47 <option value="single">Single-End RNA-seq</option>
48 </param>
49 <when value="pair">
50 <param name="pair_type" type="select" display="radio" label="Pair-End Read Type (format: mapped --> parent)" value="sd">
51 <option value="sd"> read1 (positive --> positive; negative --> negative), read2 (positive --> negative; negative --> positive)</option>
52 <option value="ds">read1 (positive --> negative; negative --> positive), read2 (positive --> positive; negative --> negative)</option>
53 </param>
54 </when>
55 <when value="single">
56 <param name="single_type" type="select" display="radio" label="Single-End Read Type (format: mapped --> parent)" value="s">
57 <option value="s">positive --> positive; negative --> negative</option>
58 <option value="d">positive --> negative; negative --> positive</option>
59 </param>
60 </when>
61 <when value="none"></when>
62 </conditional>
63 <param name="skiphits" type="boolean" value="false" label="Skip Multiple Hit Reads" />
64 <param name="onlyexonic" type="boolean" value="false" label="Only use exonic (UTR exons and CDS exons) reads, otherwise use all reads" />
65 </inputs>
66 <outputs>
67 <data format="xls" name="outputxls" from_work_dir="output_read_count.xls"/>
68 </outputs>
69 <help>
70 .. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
71
72 -----
73
74 About RSeQC
75 +++++++++++
76
77 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.
78
79 The RSeQC package is licensed under the GNU GPL v3 license.
80
81 Inputs
82 ++++++++++++++
83
84 Input BAM/SAM file
85 Alignment file in BAM/SAM format.
86
87 Reference gene model
88 Gene model in BED format.
89
90 Strand sequencing type (default=none)
91 See Infer Experiment tool if uncertain.
92
93 Options
94 ++++++++++++++
95
96 Skip Multiple Hit Reads
97 Use Multiple hit reads or use only uniquely mapped reads.
98
99 Only use exonic reads
100 Renders program only used exonic (UTR exons and CDS exons) reads, otherwise use all reads.
101
102 Sample Output
103 ++++++++++++++
104
105 ===== ===== === ========= ===== =========== ============= ============= ======== ========
106 chrom start end accession score gene strand tag count (+) tag count (-) RPKM (+) RPKM (-)
107 ===== ===== === ========= ===== =========== ============= ============= ======== ========
108 chr1 29213722 29313959 NM_001166007_intron_1 0 + 431 4329 0.086 0.863
109 chr1 29314417 29319841 NM_001166007_intron_2 0 + 31 1 0.114 0.004
110 chr1 29320054 29323726 NM_001166007_intron_3 0 + 32 0 0.174 0
111 chr1 29323831 29338376 NM_001166007_intron_4 0 + 33 2 0.045 0.003
112 chr1 29338419 29342203 NM_001166007_intron_5 0 + 7 0 0.037 0
113 chr1 29342279 29344735 NM_001166007_intron_6 0 + 35 4 0.285 0.033
114 chr1 29344954 29356911 NM_001166007_intron_7 0 + 34 2 0.057 0.003
115 chr1 29356999 29359604 NM_001166007_intron_8 0 + 19 1 0.146 0.008
116 chr1 29359757 29362337 NM_001166007_intron_9 0 + 31 0 0.24 0
117 chr1 29362435 29365765 NM_001166007_intron_10 0 + 11 1 0.066 0.006
118 chr1 29365938 29379615 NM_001166007_intron_11 0 + 63 0 0.092 0
119 chr1 29379824 29391493 NM_001166007_intron_12 0 + 383 8 0.656 0.014
120 chr1 29391670 29424318 NM_001166007_intron_13 0 + 817 10 0.5 0.006
121 chr1 29424447 29435847 NM_001166007_intron_14 0 + 28 0 0.049 0
122 chr1 29435949 29438879 NM_001166007_intron_15 0 + 12 0 0.082 0
123 chr1 29438960 29442210 NM_001166007_intron_16 0 + 22 2 0.135 0.012
124 chr1 29442315 29443330 NM_001166007_intron_17 0 + 9 0 0.177 0
125 chr1 29213602 29213722 NM_001166007_exon_1 0 + 164 0 27.321 0
126 chr1 29313959 29314417 NM_001166007_exon_2 0 + 1699 4 74.158 0.175
127 chr1 29319841 29320054 NM_001166007_exon_3 0 + 528 1 49.554 0.094
128 chr1 29323726 29323831 NM_001166007_exon_4 0 + 168 0 31.985 0
129 chr1 29338376 29338419 NM_001166007_exon_5 0 + 88 0 40.911 0
130 chr1 29342203 29342279 NM_001166007_exon_6 0 + 114 3 29.986 0.789
131 chr1 29344735 29344954 NM_001166007_exon_7 0 + 290 10 26.472 0.913
132 chr1 29356911 29356999 NM_001166007_exon_8 0 + 146 1 33.166 0.227
133 chr1 29359604 29359757 NM_001166007_exon_9 0 + 404 11 52.786 1.437
134 chr1 29362337 29362435 NM_001166007_exon_10 0 + 85 7 17.339 1.428
135 chr1 29365765 29365938 NM_001166007_exon_11 0 + 198 2 22.88 0.231
136 chr1 29379615 29379824 NM_001166007_exon_12 0 + 306 5 29.269 0.478
137 chr1 29391493 29391670 NM_001166007_exon_13 0 + 243 7 27.445 0.791
138 chr1 29424318 29424447 NM_001166007_exon_14 0 + 298 7 46.18 1.085
139 chr1 29435847 29435949 NM_001166007_exon_15 0 + 396 8 77.611 1.568
140 chr1 29438879 29438960 NM_001166007_exon_16 0 + 307 0 75.767 0
141 chr1 29442210 29442315 NM_001166007_exon_17 0 + 138 0 26.273 0
142 chr1 29443330 29446558 NM_001166007_exon_18 0 + 2434 84 15.074 0.52
143 chr1 29213602 29446558 NM_001166007_mRNA 0 + 8006 150 27.704 0.519
144 ===== ===== === ========= ===== =========== ============= ============= ======== ========
145
146 </help>
147 </tool>