Posts in 2025
  • Start Learning Bioinformatics

    Friday, May 30, 2025 in Blog

    Learning bioinformatics was fun! The start I find a medical company near my home looking for bioinformatics engineer. I first get some grasp on my Python web development, I even created a custom nginx package. Then I’m stuck with caching. I use …

    Read more

  • Gene Download

    Saturday, May 24, 2025 in Blog

    You’re absolutely on the right track with BioPython! It’s the go-to library for interacting with biological databases like NCBI programmatically in Python. Specifically, you’ll be using the Bio.Entrez module. Here’s a …

    Read more

  • Amazing News For Gene Editing

    Saturday, May 17, 2025 in Blog

    This proves what I do have a bright future! news article

    Read more

  • Test Dna Feature Viewer

    Sunday, May 11, 2025 in Blog

    from dna_features_viewer import GraphicFeature, GraphicRecord features=[ GraphicFeature(start=0, end=20, strand=+1, color="#ffd700", label="Small feature"), GraphicFeature(start=20, end=500, strand=+1, color="#ffcccc", …

    Read more

  • Edinburg Genome Foundry

    Sunday, May 11, 2025 in Blog

    https://edinburgh-genome-foundry.github.io/ This group build the tool: DNA Feature Viewer. Some other tools are also intersting. DNA Cauldron source DNA Cauldron (full documentation here) is a generic cloning simulation framework to predict final …

    Read more

  • Human Hbb Gene

    Sunday, May 11, 2025 in Blog

    https://www.ncbi.nlm.nih.gov/gene?Db=gene&Cmd=DetailsSearch&Term=3043 Of course we can download it from the web page, but I’d like to download it via automated tools BioPython can access Entrez database: …

    Read more

  • Test Primer3 Py

    Sunday, May 11, 2025 in Blog

    Project 2: Primer Design Tool: Develop a tool (using Python and Primer3-py) that takes a DNA sequence as input, allows the user to specify target regions, and designs PCR primers. Install try: from primer3 import bindings # type: ignore except …

    Read more