Import the quality scores from a FASTQ file in Python 3 Biopython
1
0
Entering edit mode
6.6 years ago
biomagician ▴ 410

Hi,

I would like to import the FASTQ scores in Python. I have figured the 'seq' attribute from the records in a FASTQ object but does anybody know how to extract the quality score as well, please?

from Bio import SeqIO
records = SeqIO.parse("assembly.fastq", "fastq")
for i, record in enumerate(records):
    if i == 1:
        print(record.seq)
        break

Thanks.

Best, C.

python3 fastq biopython quality fasta • 5.5k views
ADD COMMENT
3
Entering edit mode
6.6 years ago

Try this:

from Bio import SeqIO
for record in SeqIO.parse(input_file, "fastq"):
    score=record.letter_annotations["phred_quality"]
ADD COMMENT

Login before adding your answer.

Traffic: 2021 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6