Created
December 9, 2016 05:17
-
-
Save coela/37492fe10fa4d125bbb693d29ffd6b07 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Bio import SeqIO | |
for seq_record in SeqIO.parse("NC_000913.gbk", "genbank"): | |
print ">" + seq_record.id | |
print seq_record.seq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment