Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kostask
    Junior Member
    • Sep 2015
    • 8

    #1

    extract_only_concordant_paired_reads_from_bam_file

    Hi everyone,

    I am trying to extract only concordant paired reads from my bam file using a command that I found in posts with similar subject:

    https://www.biostars.org/p/95929/

    https://www.biostars.org/p/119316/



    However the command that I use:

    samtools view -b -f 0x2 accepted_hits.bam -o accepted_hits_conc.bam

    results to the production of the accepted_hits_conc.bam file, which is much smaller than expected.

    Specifically the original accepted_hits.bam file has size 1.4 Gb while the accepted_hits_conc.bam has size only 141 Mb.

    Also by running samtools I get:

    samtools view -c accepted_hits.bam
    34745648

    samtools view -c accepted_hits_conc.bam
    3188162

    Now what troubles me is that the align_summary.txt returned by tophat2 reports:

    Left reads:
    Input : 18363154
    Mapped : 17461735 (95.1% of input)
    of these: 1424801 ( 8.2%) have multiple alignments (1497233 have >1)
    Right reads:
    Input : 18363154
    Mapped : 17283913 (94.1% of input)
    of these: 1424801 ( 8.2%) have multiple alignments (1485742 have >1)
    94.6% overall read mapping rate.

    Aligned pairs: 16585377
    of these: 1424801 ( 8.6%) have multiple alignments
    3788640 (22.8%) are discordant alignments
    69.7% concordant pair alignment rate.

    If there are 16585377 aligned pairs from an input of 18363154 paired end reads and a 69.7% concordant pair alignment rate, why do I get so small output from samtools?

    Also I saw in other posts that using this approach is preferable to using the --no-discordant option of tophat2. But why is that?

    Shouldn't I get exactly the concordant paired reads as output, if I specify the --no-discordant and --no-mixed options in tophat2?
  • westerman
    Rick Westerman
    • Jun 2008
    • 1104

    #2
    Answering your first question about samtools. One thing you could try is to see exactly what flags you have. Try
    Code:
    samtools view accepted_hits.bam | cut -f 2 | sort | uniq -c
    That will, at least, tell you what you have in the file.

    Comment

    • kostask
      Junior Member
      • Sep 2015
      • 8

      #3
      Thank you westerman

      I saw exactly the flags and the corresponding reads for each one.

      Wouid it be correct if I wanted to extract reads with certain flags (specifically 67, 131, 115 and 179) to do so with:

      samtools view -b -f number_of_flag accepted_hits.bam -o flag_accepted_hits.bam

      and then merge them together with:

      samtools merge output_accepted_hits.bam flag1_accepted_hits.bam ...

      It may be a silly question but with the samtools merge, the reads merge or they concatenate into a single bam file?

      Comment

      Latest Articles

      Collapse

      • SEQadmin2
        Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
        by SEQadmin2



        CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

        Despite this, “CRISPR helped turn genome editing from a specialized technique into
        ...
        07-31-2026, 11:01 AM
      • SEQadmin2
        Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
        by SEQadmin2


        Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

        The systematic characterization of the human proteome has
        ...
        07-20-2026, 11:48 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 08-13-2026, 12:22 PM
      0 responses
      25 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-11-2026, 10:35 AM
      0 responses
      20 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-06-2026, 07:41 AM
      0 responses
      34 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-03-2026, 10:13 AM
      0 responses
      51 views
      0 reactions
      Last Post SEQadmin2  
      Working...