comparison read_quality.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="read_quality" name="Read Quality">
2 <description>determines Phred quality score</description>
3 <requirements>
4 <requirement type="package" version="2.15.1">R</requirement>
5 <requirement type="package" version="2.3.7">rseqc</requirement>
6 </requirements>
7 <command interpreter="python"> read_quality.py -i $input -o output -r $reduce
8 </command>
9 <inputs>
10 <param name="input" type="data" format="bam,sam" label="input bam/sam file" />
11 <param name="reduce" type="integer" label="Ignore Phred scores less than this amount (only applies to 'boxplot', default=1000)" value="1000" />
12 </inputs>
13 <outputs>
14 <data format="r" name="outputr" from_work_dir="output.qual.r" />
15 <data format="pdf" name="outputpdf" from_work_dir="output.qual.heatmap.pdf" />
16 <data format="pdf" name="outputpdf" from_work_dir="output.qual.boxplot.pdf" />
17 </outputs>
18 <help>
19 .. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
20
21 -----
22
23 About RSeQC
24 +++++++++++
25
26 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.
27
28 The RSeQC package is licensed under the GNU GPL v3 license.
29
30 Inputs
31 ++++++++++++++
32
33 Input BAM/SAM file
34 Alignment file in BAM/SAM format.
35
36 Ignore phred scores less than this number (default=1000)
37 To avoid making huge vector in R, nucleotide with certain phred score represented less than this number will be ignored. Increase this number save more memory while reduce precision. This option only applies to the 'boxplot'.
38
39 Output
40 ++++++++++++++
41
42 1. output.qual.r
43 2. output.qual.boxplot.pdf
44 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/36mer.qual.plot.png
45 3. output.qual.heatmap.pdf
46 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/36mer.qual.heatmap.png
47 use different color to represent nucleotide density ("blue"=low density,"orange"=median density,"red"=high density")
48
49 </help>
50 </tool>