how to calculate the coverage over a specif coordinate
1
2
Entering edit mode
6.7 years ago
Lila M ★ 1.2k

Hi everybody, I have bam files for RNAseq, and I know the coordinates for specific exons of interest. I would like to know if there is any way to overlap my bam files over those specific coordinates and get the coverage for those regions. I usually use bedtools coverage, but to compare between samples. I was wondering if I can create a bed files with my coordinates and do:

bedtools coverage -a my.bam -b mycoordintes.bed -s

will that work?

Many thanks!

RNA-Seq coverage exon • 4.4k views
ADD COMMENT
1
Entering edit mode
6.7 years ago
Medhat 9.7k

you should use -abam

for eexample:

bedtools coverage -abam sorted.bam -b regions.bed.gz | grep ^all > mycoverage.tab
ADD COMMENT
1
Entering edit mode

what about?

java -jar GenomeAnalysisTK.jar -T DepthOfCoverage -R [reference fasta] -I [bam file] -L [bed file]

which one is better?

ADD REPLY
1
Entering edit mode

I think they both do the same job

ADD REPLY

Login before adding your answer.

Traffic: 1482 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