bio-blast-searches
Run BLAST searches against local or remote databases for sequence homology.
Maintainer K-Dense Inc. · Last updated April 1, 2026
Biopython is a comprehensive set of freely available Python tools for biological computation. It provides functionality for sequence manipulation, file I/O, database access, structural bioinformatics, phylogenetics, and many other bioinformatics tasks. The current version is **Biopython 1.85** (released January 2025), which supports Python 3 and requires NumPy.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/biopython
Skill Snapshot
Source Doc
Use this skill when:
Biopython is organized into modular sub-packages, each addressing specific bioinformatics domains:
Install Biopython using pip (requires Python 3 and NumPy):
For NCBI database access, always set your email address (required by NCBI):
from Bio import Entrez
Entrez.email = "[email protected]"
Related skills
Run BLAST searches against local or remote databases for sequence homology.
Align long reads using minimap2 for Oxford Nanopore and PacBio data. Supports various presets for different read types and applications. Use…
Taxonomic classification of metagenomic reads using Kraken2. Fast k-mer based classification against RefSeq database. Use when performing in…
Bisulfite sequencing read alignment using Bismark with bowtie2/hisat2. Handles genome preparation and produces BAM files with methylation in…