Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • plumb_r
    Junior Member
    • Nov 2012
    • 6

    Finding reads shared between 2 bam files

    Hi
    I have mapped bisulfite converted HiSeq reads separately to in silico converted forward & reverse strands so have files
    Code:
    sample.forward.bam
    sample.reverse.bam
    I now would like a count of the reads which map to both and only both of the strands i.e. those which are in both forward & reverse bam files but not in only one of them.
    Any ideas?
    I was thinking of using either:
    Code:
    samtools merge out.bam sample.forward.bam sample.reverse.bam
    but can't work out how this would help
    Could another option could be to use bedtools to convert both bam to bed & then intersect these? Something like:
    Code:
    bamToBed -i sample.forward.bam > for.reads.bed
    bamToBed -i sample.reverse.bam > rev.reads.bed
    intersectBed -a .for.reads.bed -b rev.reads.bed -c
    Would this work?
    Thanks
  • dpryan
    Devon Ryan
    • Jul 2011
    • 3478

    #2
    This will somewhat depend on how you did the alignments. You also run into the problem of whether to consider a read that just barely mapped to say, the original top strand (assume a large edit distance), but mapped perfectly with no edits to the original bottom strand as actually mapping to both strands or not.

    Converting the alignments to BED files and then intersecting them won't do what you want, since you'll be intersecting covered areas rather than whether an individual read maps (e.g. if a read aligns to chr1 of the top strand and chr2 of the bottom strand then the intersection (which is coordinate based) won't work). You could merge the alignments and name sort them and then just write a program to process that. That would be quite straight forward. You could also use an almost identical program on the unmerged files to save a step (and some time).

    Might I ask what you're trying to accomplish with this? If you're trying to just figure out which of your reads to exclude from downstream analysis because of ambiguous mapping then you could just rerun the alignments with Bismark or Bison (of which I'm the author).
    Last edited by dpryan; 07-17-2013, 02:01 AM. Reason: said BAM and meant BED!

    Comment

    Latest Articles

    Collapse

    • SEQadmin2
      Nine Things a Sample Prep Scientist Thinks About Before Sequencing
      by SEQadmin2


      I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

      Here are nine questions we think about, in roughly the order they matter, before...
      06-18-2026, 07:11 AM
    • SEQadmin2
      From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
      by SEQadmin2


      Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


      The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
      ...
      06-02-2026, 10:05 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by SEQadmin2, 06-17-2026, 06:09 AM
    0 responses
    38 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-09-2026, 11:58 AM
    0 responses
    100 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-05-2026, 10:09 AM
    0 responses
    122 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-04-2026, 08:59 AM
    0 responses
    114 views
    0 reactions
    Last Post SEQadmin2  
    Working...