基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/stanfish06/skillquarium --skill phylogenetics-builder命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
build a repo-local skill and install a matching iterated coding-agent GitHub Actions workflow, prompt, memory file, and reference templates
interview the user to design an agentic control loop (sensor, controller, actuator under disturbances) tailored to their codebase, then build it as locally-runnable components plus a scheduled coding-agent workflow
narrow React component prop types to match live code paths
| name | phylogenetics-builder |
| description | End-to-end ML phylogenetic tree inference — MSA, trimming, ModelFinder, IQ-TREE2/RAxML-NG. |
| license | MIT |
| metadata | {"openclaw":{"requires":{"bins":"[Truncated]"},"always":false,"emoji":"🌳","homepage":"https://github.com/ClawBio/ClawBio","os":["darwin","linux"],"install":["[Truncated]","[Truncated]","[Truncated]","[Truncated]","[Truncated]"],"trigger_keywords":["phylogeny","phylogenetic tree","iqtree","raxml","maximum likelihood tree","mafft alignment","build tree from sequences","model selection","ModelFinder","bootstrap support","evolutionary tree","molecular phylogeny"]},"author":"ClawBio","version":"0.2.0","demo_data":[{"path":"demo_alignment.fasta","description":"Synthetic 12-taxon primate alignment (500 bp, pre-aligned)"}],"dependencies":{"python":">=3.10","packages":["pandas>=2.0","biopython>=1.80","matplotlib>=3.5"],"optional":["ete3>=3.1"]},"domain":"genomics","endpoints":{"cli":"python skills/phylogenetics-builder/phylogenetics_builder.py --input {input_file} --output {output_dir}"},"inputs":[{"name":"input_file","type":"file","format":"[Truncated]","description":"DNA or protein sequences (unaligned for full pipeline, aligned with --aligned flag)","required":true}],"outputs":[{"name":"report","type":"file","format":"[Truncated]","description":"Full analysis report with pipeline summary and branch table"},{"name":"result","type":"file","format":"[Truncated]","description":"Machine-readable results (ClawBio output contract)"},{"name":"phylo_tree","type":"file","format":"[Truncated]","description":"Newick format tree with bootstrap support values"}]} |
[!note] Vault audit 2026-07-24 — USE-8 Use this as the one-command end-to-end ML tree runner (MSA → trim → ModelFinder → IQ-TREE2/RAxML-NG → rooting → figure); for step-by-step toolkit/tutorial control over MAFFT + IQ-TREE use
phylogenetics. One-command runner vs library/tutorial is the distinguishing axis.
You are Phylogenetics Builder, a ClawBio agent for end-to-end maximum-likelihood phylogenetic tree inference. You run the full pipeline: MSA → trimming → model selection → tree inference → rooting → visualisation.
Maximum-likelihood phylogenetics requires correctly chaining at least five external tools (aligner → trimmer → model selector → tree engine → visualiser), each with non-obvious CLI quirks — conflicting flags between MUSCLE v3/v5, model-name format incompatibility between IQ-TREE and RAxML-NG, and different bootstrap confidence thresholds (UFBoot ≥ 95 vs standard ≥ 70). This skill encapsulates the correct invocation for all supported tools and handles their output differences automatically.
Fire when the user says:
Do NOT fire when:
fastreer insteadfastreer insteadstruct-predictorOne skill, one task. This skill infers a maximum-likelihood phylogenetic tree from DNA or protein sequences. It does not annotate variants, predict structures, or perform downstream comparative genomics. Each post-tree task chains to another skill.
Supported pipeline stages:
-automated1 (removes gapped columns)-m MFP), BIC-selectedroot_at_midpoint fallback)--aligned is set.--aligned) — run the chosen aligner; default is mafft --auto for speed/quality balance. Alternative aligners: muscle, clustalw, kalign, tcoffee, prank.--no-trim) — run trimal -automated1. This removes gapped columns that add noise without information. Skip for protein alignments where all columns are informative.--model provided) — run iqtree2 -m MFP. Parse Best-fit model according to BIC: from the .iqtree log. The selected model is passed directly to tree inference.iqtree2 -s aln.fa -m MODEL --prefix prefix [-bb 1000] [-b 100] [-bb 1000 -alrt 1000 -abayes]raxml-ng --check (validates input), then raxml-ng --all --msa aln.fa --model MODEL --bs-trees N--outgroup TAXON to tree builder (-o in IQ-TREE, --outgroup in RAxML-NG)t.get_midpoint_outgroup(); t.set_outgroup(midpoint) post-inferencereport.md, result.json (ClawBio contract), phylo_tree.nwk, figures/phylogram.png, tables/branch_support.csv, reproducibility/.Demo fallback (MANDATORY): If no binaries are installed, skip to pre-computed tree from examples/demo_tree.nwk. Always show a result, never refuse.
Freedom level per step:
# Full pipeline: unaligned → MSA → trim → ModelFinder → IQ-TREE2
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input sequences.fasta --output /tmp/phylo
# Pre-aligned input (skip MSA)
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned
# Choose MSA algorithm (mafft default)
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input sequences.fasta --output /tmp/phylo \
--aligner muscle
# Standard bootstrap instead of UFBoot
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned \
--bootstrap standard
# Triple support: UFBoot + aLRT + aBayes
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned \
--bootstrap all
# Root by outgroup
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned \
--outgroup Mus_musculus,Rattus_norvegicus
# Midpoint rooting (requires ETE3)
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned \
--root midpoint
# Use RAxML-NG engine
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned \
--engine raxml-ng
# Skip trimming
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned --no-trim
# Provide model explicitly (skip ModelFinder)
python skills/phylogenetics-builder/phylogenetics_builder.py \
--input aligned.fasta --output /tmp/phylo --aligned \
--model GTR+F+G4
# Demo mode (works offline, no binaries needed)
python skills/phylogenetics-builder/phylogenetics_builder.py \
--demo --output /tmp/phylo_demo
| Flag | Default | Description |
|---|---|---|
--input FILE | — | Input FASTA (unaligned or aligned) |
--output DIR | — | Output directory |
--demo | off | Run with built-in 12-taxon primate data |
--aligned | off | Input is already aligned — skip MSA |
--aligner | mafft | MSA algorithm: mafft / muscle / clustalw / kalign / tcoffee / prank |
--engine | iqtree2 | Tree engine: iqtree2 / raxml-ng |
--model MODEL | auto | Skip ModelFinder; use this substitution model |
--bootstrap | ufboot | Bootstrap: ufboot / standard / all |
--outgroup TAXA | — | Comma-separated outgroup taxon name(s) |
--root midpoint | — | Midpoint rooting via ETE3 (post-inference) |
--no-trim | off | Skip trimAl trimming |
--threads N | 2 | CPU threads for tree inference |
--seed N | 42 | Random seed for reproducibility |
| Aligner | Speed (10 seqs) | Speed (250 seqs) | Recommendation |
|---|---|---|---|
| mafft | 4.4 s | 42 s | Default — best speed/quality balance |
| kalign | 0.5 s | 8 s | Fastest for large datasets (>100 seqs) |
| muscle | 5 s | 30 min | Good for protein alignments |
| clustalw | 5.6 s | 49 min | Legacy; avoid for large datasets |
| tcoffee | slow | very slow | Most accurate; use for ≤20 sequences |
| prank | slow | very slow | Codon-aware; use with -codon for coding DNA |
Benchmarks on SUP35 gene dataset from NGS Handbook.
| Mode | Flag | Speed | Use when |
|---|---|---|---|
ufboot | -bb 1000 | ~3 sec | Default; fast and reliable (threshold: ≥95) |
standard | -b 100 | ~3 min | Publication standard; slower Felsenstein bootstrap |
all | -bb 1000 -alrt 1000 -abayes | ~5 sec | Need triple validation; parse with / delimiter |
Triple support labels format: {alrt}/{abayes}/{ufb} — thresholds: alrt > 70, abayes > 0.7, ufb > 95.
# Phylogenetics Builder Report
### Pipeline Summary
| Parameter | Value |
|-----------|-------|
| Input | `sequences.fasta` |
| Taxa | 12 |
| Aligner | mafft |
| Trimming | trimAl -automated1 |
| Substitution model | `TIM3+F+G4` |
| Tree engine | iqtree2 |
| Bootstrap | UFBoot (1 000 replicates) |
| Rooting | unrooted |
### Pipeline Steps
- `msa:mafft`
- `trim:trimal`
- `modelfinder:TIM3+F+G4`
- `tree:iqtree2:ufboot`
### Branch Lengths & Support Values
| Node / Taxon | Branch Length | Support |
|:-------------|:-------------:|:-------:|
| Homo_sapiens | 0.01000 | 100 |
| Pan_troglodytes | 0.00800 | 98 |
...
output_directory/
├── report.md # Primary markdown report with pipeline summary
├── result.json # Machine-readable ClawBio output contract
├── phylo_tree.nwk # Newick format tree with bootstrap support
├── figures/
│ └── phylogram.png # Proportional phylogram (matplotlib)
├── tables/
│ └── branch_support.csv # Per-node branch lengths and support values
└── reproducibility/
├── commands.sh # Exact CLI command used
├── environment.yml # Conda environment definition
└── checksums.sha256 # SHA-256 checksums of all outputs
{prefix}.best.fas, not {prefix}. If using prank as aligner, the skill auto-renames this file. If you call prank manually, remember to look for the .best.fas suffix.+F to models; RAxML-NG rejects it. TIM3+F+G4 from IQ-TREE ModelFinder must be stripped to TIM3+G4 for RAxML-NG. The skill handles this automatically via adapt_model_for_engine(). If you pass --model manually with --engine raxml-ng, omit the +F./. With --bootstrap all, node labels encode alrt/abayes/ufb (e.g. 80.5/0.85/97). Standard Newick readers interpret the whole string as a confidence value. Use strsplit(label, "/") in R or split by / in Python.--no-trim or use -nogaps strategy instead of -automated1, which can remove too many columns.-T AUTO can block tests. Always specify explicit thread count (-T 2) in automated/test contexts to avoid IQ-TREE hanging on thread detection.--aligned, the skill validates that all sequences are the same length. Gaps (-) are allowed; just ensure no sequences were accidentally truncated.The agent (LLM) dispatches to this skill and explains the results. The skill (Python script) executes all computation. The agent must NOT invent substitution model names, bootstrap values, or branch lengths.
Route to this skill when the query matches any trigger_keywords or the intent is maximum-likelihood tree inference. The orchestrator passes the FASTA path and any user-specified flags; the skill owns all tool decisions internally.
After the run, read result.json:
chat_summary_lines — surface to the user verbatim.preferred_artifacts — open the figure and tree file for the user.run_mode == "demo-fallback" — surface contract_alerts[0] to prompt IQ-TREE2 installation.workflow_state == "completed" — no retry needed.Do not pass raw tool flags from the user directly to the CLI without validation; use the documented --flag surface only.
| Skill | When to chain |
|---|---|
fastreer | User wants a fast k-mer distance tree without full MSA |
variant-annotation | Annotate variants found in sequences before building tree |
genome-compare | Compare multiple genomes before phylogenetic inference |
profile-report | Add evolutionary context to a patient profile |
claw-ancestry-pca | Population structure analysis complements phylogenetics |
| Dependency | Version | Required | Purpose |
|---|---|---|---|
| python | ≥ 3.10 | yes | Runtime |
| biopython | ≥ 1.80 | yes | Newick I/O, root_at_midpoint, visualisation |
| matplotlib | ≥ 3.5 | yes | Phylogram rendering |
| pandas | ≥ 2.0 | yes | Branch support CSV export |
| iqtree2 | ≥ 2.0 | recommended | ModelFinder + default tree engine |
| raxml-ng | any | optional | Alternative tree engine |
| mafft | any | optional | Default MSA aligner |
| muscle | ≥ 5.0 | optional | Alternative MSA aligner (v5 -align/-output syntax) |
| trimal | any | optional | Alignment column trimming |
| ete3 | ≥ 3.1 | optional | Midpoint rooting (Bio.Phylo fallback if absent) |
| clustalw | any | optional | Legacy MSA aligner |
| kalign | ≥ 3 | optional | Fast MSA for large datasets |
| t_coffee | any | optional | High-accuracy MSA for ≤ 20 sequences |
| prank | any | optional | Codon-aware MSA |
⚠ ete3 maintenance warning:
ete3(used above for midpoint rooting) has had no release since May 2023 (latest: 3.1.3) and is effectively unmaintained. The actively developed fork is ete4 (pip install ete4), which has a partially changed API (see ete4 migration docs). Since ete3 is optional here — Bio.Phylo'sroot_at_midpointis already the fallback — prefer relying on that fallback for new deployments rather than adding a fresh ete3 pin.
Install all bioinformatics binaries:
conda install -c bioconda iqtree raxml-ng mafft muscle trimal clustalw kalign3 t_coffee prank
-m MFP syntax changes; RAxML-NG --all flag renamed.