biopython processing longest transcript

1, the installation package

pip install bcbio, GFF pprint

 2, the sequences are shown in the bee

from Bio import SeqIO
genome_name = 'GCF_001442555.1_ACSNU-2.0_genomic.fna'
recs = SeqIO.parse(genome_name, 'fasta')
for rec in recs:
    print(rec.description)

 

 

Guess you like

Origin www.cnblogs.com/djx571/p/11503442.html