This project consists of two Python scripts that work together to create a simple application for fetching and displaying information about DNA sequences from the NCBI database (GenBank).
This project is a simple DNA sequence viewer with a graphical interface powered by Python’s Tkinter and Biopython. It allows users to fetch and analyze DNA sequences from the NCBI database using a GenBank accession number.
gui.py
provides an interactive interface for users to enter accession numbers and fetch DNA sequence details.fetch_sequence.py
script uses Biopython’s Entrez module to retrieve sequences, displaying key information like sequence length and GC content.pip install biopython
).python gui.py
).This project is suitable for beginners in bioinformatics looking to interact with genomic data.
This project consists of two Python scripts that work together to create a simple application for fetching and displaying information about DNA sequences from the NCBI database (GenBank).