Overlapping reads between two BED windows
0
0
Entering edit mode
22 days ago
pablo ▴ 310

Hi,

I did an alignment of my PE-reads with bwa on the plant genome I work on. I computed the coverage for each chromosome in this way :

  • I created windows of 10kb of each chromosome of my reference genome with bedtools makewindows
  • I computed the coverage for each of these windows with bedtools coverage to get a .bedgraph file
  • I did some coverage plots with ggplot2 (one per chromosome) from the bedgraph file

I noticed the overall coverage was a bit higher than the expected one. I suspected than certain reads could account for 2 if they overlap two windows. I checked that with samtools view to find some reads overlapping two windows and then compute the coverage with a "custom way" on that two windows, and that confirmed my doubt.

Two questions :

  • is there a better to check that overlapping reads, rather than using my custom way
  • and is there a way to count only 1X for these cases?

Best, Pablo

samtools bam bedtools coverage • 460 views
ADD COMMENT
1
Entering edit mode

see bedtools intersect

using -wa and -wb can give you each overlap (which can be subjected to a cut + uniq or so).

For at least one overlap kind of things, see -u option

Do remember that both the windows(bed) as well as the alignment(bam) can be set as A or B depending on what you are looking for.

ADD REPLY
0
Entering edit mode

Indeed, I generated two 10kb adjacent windows BAM files and bedtools intersect does the job to identify the overlapping reads between those two windows. Is it possible with bedtools genomecov or coverage to keep only once occurence of these reads to compute the coverage?

ADD REPLY
0
Entering edit mode

I do not know of a way by which such a constraint can be imposed in genomecov/coverage.

ADD REPLY
0
Entering edit mode

bedtools intersect will do the job then, thanks.

ADD REPLY

Login before adding your answer.

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