Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Orr Shomroni
    Member
    • Oct 2011
    • 26

    Samtools flagstat - no duplicates?

    I'm having some problems with samtools flagstat (which surprisingly should be straightforward as it has no parameters that can be wrongly defined). Samtools flagstat is used to return summaries of the flags produced within bam files. I was given intensities from exome sequencing, converted them into fastq files and removed reads with low quality (fastq format). I ran an alignment on fastq files using BWA, and got the following weird results from flagstat:

    109638024 + 0 in total (QC-passed reads + QC-failed reads)
    0 + 0 duplicates
    108394681 + 0 mapped (98.87%:nan%)
    109638024 + 0 paired in sequencing
    54819012 + 0 read1
    54819012 + 0 read2
    106794832 + 0 properly paired (97.41%:nan%)
    108037629 + 0 with itself and mate mapped
    357052 + 0 singletons (0.33%:nan%)
    1071345 + 0 with mate mapped to a different chr
    977974 + 0 with mate mapped to a different chr (mapQ>=5)

    Common biological knowledge dictates that every sequencing should produce 10-15% PCR or optical duplicates, which is why I was surprised when I got 0 duplicates (I tried it on several samples in the same run, and they all gave 0 + 0 duplicates, which makes me feel something is wrong with flagstat). It got even weirder after I did samtools rmdup and retrieved the flagstat for that bam file:

    59158619 + 0 in total (QC-passed reads + QC-failed reads)
    0 + 0 duplicates
    57915276 + 0 mapped (97.90%:nan%)
    59158619 + 0 paired in sequencing
    26999098 + 0 read1
    32159521 + 0 read2
    56923778 + 0 properly paired (96.22%:nan%)
    57745533 + 0 with itself and mate mapped
    169743 + 0 singletons (0.29%:nan%)
    727165 + 0 with mate mapped to a different chr
    672895 + 0 with mate mapped to a different chr (mapQ>=5)

    So about half of the original reads are kept, i.e. there are some duplicates, but they were not flagged in bwa. How could this have happened?
    "Though it may seem that all's been said and done, originality still lives on" - some unoriginal guy who had nothing better to write as his signature
  • cjp
    Member
    • Jun 2011
    • 58

    #2
    You'll only get duplicates in the BAM file if they are marked as duplicates. BWA doesn't mark them and samtools rmdup removes them. Try using picard MarkDuplicates

    java -jar ${picard_dir}/MarkDuplicates.jar I=${name}_bwa.bam O=${name}_bwa_dedup.bam M=${name}_bwa_dedup_metrics.txt

    Chris

    Comment

    • Orr Shomroni
      Member
      • Oct 2011
      • 26

      #3
      Well, I have considered a dodgy trick: if I subtract the number of reads in the bam rmdup file from the number of reads in the original bam file, I should get back the number of duplicates removed, right?

      One thing I'm still not certain about: BWA aligns the reads to get a bam file, and it doesn't flag any duplicates. Does rmdup than find those duplicates without them being previously marked/flagged? If so, how is this done?
      "Though it may seem that all's been said and done, originality still lives on" - some unoriginal guy who had nothing better to write as his signature

      Comment

      • cjp
        Member
        • Jun 2011
        • 58

        #4
        It looks for reads that have the same start position and then keeps the best one based on sequence quality scores - it's a fairly basic approach. Also look at this thread which recommends to use picard:

        Discussion of next-gen sequencing related bioinformatics: resources, algorithms, open source efforts, etc


        BWA is kept light weight and doesn't do things like marking duplicates or even making BAM files as some applications don't need to mark duplicates - e.g., in ChIP-seq.

        Chris

        Comment

        Latest Articles

        Collapse

        • 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
        • SEQadmin2
          Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
          by SEQadmin2



          Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
          ...
          07-09-2026, 11:10 AM
        • SEQadmin2
          Cancer Drug Resistance: The Lingering Barrier to Rising Survival
          by SEQadmin2



          Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

          There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
          07-08-2026, 05:17 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, 07-20-2026, 11:10 AM
        0 responses
        18 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-13-2026, 10:26 AM
        0 responses
        33 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-09-2026, 10:04 AM
        0 responses
        44 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-08-2026, 10:08 AM
        0 responses
        30 views
        0 reactions
        Last Post SEQadmin2  
        Working...