Answers for "python converting phred quality score to number"

1

python converting phred quality score to number

# Basic syntax:
ord('phred_score')-33

# Example usage:
ord('!')-33
--> 0 # I.e., the ASCII character ! encodes the quality score 0

ord('A')-33
--> 32
Posted by: Guest on May-23-2021

Code answers related to "python converting phred quality score to number"

Python Answers by Framework

Browse Popular Code Answers by Language