Agent skill

phylogenetics

Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.

K-Dense-AIgithub.com/K-Dense-AIGitHub ↗
claude-codeships scriptsMIT
Install
npx skills add K-Dense-AI/scientific-agent-skills --skill phylogenetics --agent claude-code

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

Facts
Files in the skill folder: 3
SKILL.md size: 14 KB
Bundled scripts: yes
Version: 1.2
Path: skills/phylogenetics/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 32,619
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

# Phylogenetics ## Overview Phylogenetic analysis reconstructs the evolutionary history of biological sequences (genes, proteins, genomes) by inferring the branching pattern of descent. This skill covers the standard pipeline: 1. **MAFFT** — Multiple sequence alignment 2. **IQ-TREE 2** — Maximum likelihood tree inference with model selection 3. **FastTree** — Fast approximate maximum likelihood (for large datasets) 4. **ETE3** — Python library for tree manipulation and visualization **Installation:** ```bash # Conda (recommended for CLI tools) conda install -c bioconda mafft iqtree fasttree uv pip install ete3 # ete3's TreeStyle/NodeStyle rendering lives in its Qt backend, so image output # needs PyQt5 as well; tree parsing and statistics work without it. uv pip install PyQt5 ``` ## When to Use This Skill Use phylogenetics when: - **Evolutionary relationships**: Which organism/gene is most closely related to my sequence? - **Viral phylodynamics**: Trace outbreak spread and estimate transmission dates - **Protein family analysis**: Infer evolutionary relationships within a gene family - **Horizontal gene transfer detection**: Identify genes with discordant species/gene trees - **Anc

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Standard Workflow
  4. 1. Multiple Sequence Alignment with MAFFT
  5. 2. Trim Alignment (Optional but Recommended)
  6. 3. IQ-TREE 2 — Maximum Likelihood Tree
  7. 4. FastTree — Fast Approximate ML
  8. 5. Tree Analysis and Visualization with ETE3
  9. 6. Complete Analysis Script
  10. IQ-TREE Model Guide
  11. DNA Models
  12. Protein Models
  13. Best Practices
  14. Additional Resources
Ships with 2 files
  • references/iqtree_inference.md
  • scripts/phylogenetic_analysis.py
Commands it runs
Conda (recommended for CLI tools)
conda install -c bioconda mafft iqtree fasttree
uv pip install ete3
needs PyQt5 as well; tree parsing and statistics work without it.
uv pip install PyQt5
More from scientific-agent-skills
All skills →
About this skill
What does the phylogenetics skill do?

Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.

How do I install it?

Run `npx skills add K-Dense-AI/scientific-agent-skills --skill phylogenetics --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 K-Dense-AI/scientific-agent-skills, a repository with 32,619 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