Entering edit mode
7.3 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.