Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Quality values for aligned reads in .sam file

    Hi,
    I am mapping ABI solid reads using bwa, and then converting to a sam file and ultimately to a .pilup file using samtools. I am trying to understand the quality values in the sam file. For the unmapped reads the quality values agree with those in the fastq file, but for the mapped reads, I can see no relationship between the quality values in the .sam file and those in the .fastq file, or the mapping quality. I bring this up because I am trying to write my own snp filter, and don't know whether I can trust the reported quality values. I would appreciate any help on this.

    Arnold Kas

  • #2
    Originally posted by arnkas View Post
    Hi,
    I am mapping ABI solid reads using bwa, and then converting to a sam file and ultimately to a .pilup file using samtools. I am trying to understand the quality values in the sam file. For the unmapped reads the quality values agree with those in the fastq file, but for the mapped reads, I can see no relationship between the quality values in the .sam file and those in the .fastq file, or the mapping quality. I bring this up because I am trying to write my own snp filter, and don't know whether I can trust the reported quality values. I would appreciate any help on this.

    Arnold Kas
    It converts the color qualities to base qualities based on the alignment. For example, if neither color was aligned as an error (i.e. corrected), then it returns the sum of the two color qualities plus 10. MAQ and BWA were written by the same author and follow the same color space alignment code to translate the base qualities. See "csmap2ntmap.cc" in maq-0.7.1 lines 102-110 for the exact code.

    Briefly, let X and Y be indicators whether or not the first and second colors encoding a base are aligned as errors. Let A and B the color qualities (log probabilities) of the two colors respectively. Then the returned base quality is:
    Code:
    if(1==X && 1==Y) {
      return (A + B + 10);
    }
    else if(1==X && 0==Y) {
      return (A - B);
    }
    else if(0==X && 1==Y) {
      return (B - A);
    }
    else {
      return 0;
    }
    Since A and B are log probabilities, I would interpret this as a log odds ratio.

    Comment


    • #3
      Perfect. Thanks.

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Current Approaches to Protein Sequencing
        by seqadmin


        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
        04-04-2024, 04:25 PM
      • seqadmin
        Strategies for Sequencing Challenging Samples
        by seqadmin


        Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
        03-22-2024, 06:39 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 04-11-2024, 12:08 PM
      0 responses
      32 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      35 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      29 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-04-2024, 09:00 AM
      0 responses
      53 views
      0 likes
      Last Post seqadmin  
      Working...
      X