← ClaudeAtlas

phylogeneticslisted

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.
userInner/SKILLS · ★ 3 · AI & Automation · score 72
Install: claude install-skill userInner/SKILLS
# 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 - **Ancestral sequence reconstruction**: Infer ancestral protein sequences - **Molecular clock analysis**: Estimate divergence dates using temporal sampling - **GWAS companion**: Place variants in evolutionary context (e.g., SARS-CoV-2 variants) - **Microbiology**: Species phylogeny from 16S rRNA o