Agent skill

bio-alignment-pairwise

Perform pairwise sequence alignment using Biopython Bio.Align.PairwiseAligner. Use when comparing two sequences, finding optimal alignments, scoring similarity, and identifying local or global matches between DNA, RNA, or protein sequences.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codeships scripts
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-alignment-pairwise --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 6
SKILL.md size: 9 KB
Bundled scripts: yes
Path: skills/bio-alignment-pairwise/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Version Compatibility Reference examples tested with: BioPython 1.83+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Pairwise Sequence Alignment **"Align two sequences"** → Compute an optimal alignment between a pair of sequences using dynamic programming. - Python: `PairwiseAligner()` (BioPython Bio.Align) - CLI: `needle` (global) or `water` (local) from EMBOSS - R: `pairwiseAlignment()` (Biostrings) Align two sequences using dynamic programming algorithms (Needleman-Wunsch for global, Smith-Waterman for local). ## Required Import **Goal:** Load modules needed for pairwise alignment operations. **Approach:** Import the PairwiseAligner class along with sequence and I/O utilities from Biopython. ```python from Bio.Align import PairwiseAligner from Bio.Seq import Seq from Bio import SeqIO ``` ## Core Concepts | Mode | Algorithm | Use Case | |------|-----------|----------| | `global` | Needleman-Wunsch | Full-le

What's inside
Steps it walks through
  1. Version Compatibility
  2. Required Import
  3. Core Concepts
  4. Creating an Aligner
  5. Performing Alignments
  6. Alignment Output Format
  7. Accessing Alignment Data
  8. Alignment Counts (Identities, Mismatches, Gaps)
  9. Common Scoring Configurations
  10. DNA/RNA Alignment
  11. Protein Alignment
  12. Local Alignment (Find Best Region)
  13. Semiglobal (Overlap/Extension)
  14. Available Substitution Matrices
Ships with 5 files
  • examples/alignment_from_file.py
  • examples/global_alignment.py
  • examples/local_alignment.py
  • examples/protein_alignment.py
  • usage-guide.md
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-alignment-pairwise skill do?

Perform pairwise sequence alignment using Biopython Bio.Align.PairwiseAligner. Use when comparing two sequences, finding optimal alignments, scoring similarity, and identifying local or global matches between DNA, RNA, or protein sequences.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-alignment-pairwise --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going