How to generate alignment report from bam files
2
0
Entering edit mode
6.8 years ago
kin182 ▴ 10

I am relatively new to the programs that analyze bam files. I am wondering if there is a program that allows us to have an alignment report of all the reads of a particular nucleotide from the bam file?

For example:

chr1:2876597

Total read: 130
A: 120
T: 0
G: 8
C: 0
N: 0
Del: 2
Ins: 0

I have over 200 bam files and I would like to have a report like above for all of them. Could anyone help? Thanks!

alignment bam • 2.9k views
ADD COMMENT
1
Entering edit mode

If you decide a visual representation would be helpful, you can also use IGV; there is an automator script here that might make the task easier.

ADD REPLY
8
Entering edit mode
6.8 years ago

I've written : FindAllCoverageAtPosition http://lindenb.github.io/jvarkit/FindAllCoverageAtPosition.html

it reports the coverage+bases (not shown in the html doc)+cigar-operators at a given position for a set of files:

$ find ./  -type f -name "*.bam" |\
   java -jar dist/findallcoverageatposition.jar -p "chr2:1234"
ADD COMMENT
1
Entering edit mode
6.8 years ago

That's essentially what samtools mpileup is doing, though I certainly hope you're not planning to actually write that out to a file.

ADD COMMENT

Login before adding your answer.

Traffic: 2437 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6