Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
from Bio import Entrez def retrieve_genome_sequence(genome_id): Entrez.email = 'your_email@example.com' # Set your email address here handle = Entrez.efetch(db='nucleotide', id=genome_id, rettype='fasta', retmode='text') record = handle.read() handle.close() return record # Example usage genome_id = 'NC_045512' # Replace with the actual genome ID sequence = retrieve_genome_sequence(genome_id) # Output the DNA sequence in a markdown code block print("```") print(sequence) print("```")