comparison bam_stat.xml @ 1:dc3b3b88fbab

first commit
author nilesh
date Thu, 18 Jul 2013 11:27:43 -0500
parents
children
comparison
equal deleted inserted replaced
0:0d133c7c387e 1:dc3b3b88fbab
1 <tool id="bam_stat" name="BAM/SAM Mapping Stats">
2 <description>
3 reads mapping statistics for a provided BAM or SAM file.
4 </description>
5 <requirements>
6 <requirement type="package" version="2.3.7">rseqc</requirement>
7 </requirements>s
8 <command interpreter="python">
9 bam_stat.py -i $input -q $mapqual &amp;> $output
10 </command>
11 <inputs>
12 <param name="input" type="data" label="Input .bam/.sam File" format="bam,sam" />
13 <param label="Minimum mapping quality (default=30" type="integer" value="30" name="mapqual" />
14 </inputs>
15 <outputs>
16 <data format="txt" name="output" />
17 </outputs>
18 <tests>
19 <test>
20 <param name="input" value="Pairend_nonStrandSpecific_36mer_Human_hg19.bam" />
21 <output name="bamstatout.txt"
22 </test>
23 </tests>
24 <help>
25 .. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
26
27 -----
28
29 About RSeQC
30 +++++++++++
31
32 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.
33
34 The RSeQC package is licensed under the GNU GPL v3 license.
35
36 Inputs
37 ++++++++++++++
38
39 Input BAM/SAM file
40 Alignment file in BAM/SAM format.
41
42 Minimum mapping quality
43 Minimum mapping quality for an alignment to be called “uniquely mapped” (default=30)
44
45 Output
46 ++++++++++++++
47
48 - Total Reads (Total records) = {Multiple mapped reads} + {Uniquely mapped}
49 - Uniquely mapped Reads = {read-1} + {read-2} (if paired end)
50 - Uniquely mapped Reads = {Reads map to '+'} + {Reads map to '-'}
51 - Uniquely mapped Reads = {Splice reads} + {Non-splice reads}
52
53
54 </help>
55 </tool>