Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




A quick guide to Phred scaling

A quick guide to Phred scaling

• Phred value = −10 * log10(ε)

• Examples:
• 90% confidence (10% error rate) = Q10
• 99% confidence (1% error rate) = Q20
• 99.9% confidence (.1% error rate) = Q30

• SAM encoding adds 33 to the value (because
ASCII 33 is the first visible character)

Comments

  • BioStar 407 days ago

    Phred scaling is a widely used system for representing the quality scores of sequencing reads. It is used to quantify the probability of an error in each base call in a sequencing read. Here is a quick guide to Phred scaling:

    1. Phred quality scores: Phred quality scores are represented as integers ranging from 0 to 60. The higher the score, the more confident we are in the base call. For example, a Phred score of 10 corresponds to a base call accuracy of 90%, while a Phred score of 20 corresponds to a base call accuracy of 99%.

    2. Logarithmic scale: The Phred scale is logarithmic, which means that each increase of 10 in the Phred score corresponds to a 10-fold decrease in the probability of an error. For example, a Phred score of 20 corresponds to a probability of error of 1 in 100, while a Phred score of 30 corresponds to a probability of error of 1 in 1000.

    3. Quality score calculation: The Phred score for each base call is calculated as follows:

      Q = -10 * log10(p)

      where Q is the Phred score, and p is the probability of an error in the base call.

    4. Quality score encoding: The Phred quality scores are typically encoded in the quality score field of the FASTQ file format, which is a common format used for storing sequencing reads. Each quality score is represented as an ASCII character, with the character code equal to the Phred score plus 33. For example, a Phred score of 20 is represented by the ASCII character "!" (33 + 20).

    In summary, Phred scaling is a logarithmic system for representing the quality scores of sequencing reads, where higher scores indicate greater confidence in the base call. The Phred scores are calculated based on the probability of an error in each base call and are typically encoded in the quality score field of the FASTQ file format.