cDNA is amplified so that identical sequences are located in the same position on the flow cell
New DNA is synthesized with fluorescently labeled nucleotides−A, T, C, and G have a unique fluorescence signal.
from Bio import SeqIO
fasta_file = "znf398.fasta"
# Iterate over each record in the FASTA file
for record in SeqIO.parse(fasta_file, "fasta"):
print("ID:", record.id)
print("Sequence:", str(record.seq))
print()