Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

phylo-tree系统树

Agent Skill

phylo-tree 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,281

周安装

97

GitHub Stars

公开资料未说明

下载量

799
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:phylo-tree(系统树)
来源仓库:https://github.com/billwanttobetop/phylo-tree
安装命令:
openclaw skills install phylo-tree
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install phylo-tree

简介

基于酶名称或 FASTA 序列生成高质量系统发育树。

  • 支持最大似然法建模与引导程序优化图形精度。phylo-tree 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输入生物序列即可输出可用于发表的进化关系图。
  • 依赖外部计算资源,执行时间可能受数据量影响。
  • 结果需结合生物学背景解读,避免过度依赖算法输出。

SKILL.md

PhyloTree | Publication-Grade Phylogenetic Analysis

One-line: Build Nature/Science-level phylogenetic trees from enzyme names or sequences.


🚀 Quick Start (3 steps)

# 1. Activate environment
conda activate r43

# 2. Run analysis
python3 scripts/run_v2.py --query "imine reductase" --output ./output

# 3. Done! Check ./output/figures/ for publication-ready figures

Output: ML tree + 6 figures + QC reports + scientific conclusions


📋 Common Use Cases

Use Case 1: Analyze from FASTA file (Recommended)

python3 scripts/run_v2.py --fasta sequences.fasta --output ./my_analysis

How to get sequences:

  1. Go to UniProt: https://www.uniprot.org/
  2. Search for your enzyme (e.g., "imine reductase")
  3. Click "Download" → "FASTA (canonical)"
  4. Save as sequences.fasta

Use Case 2: Analyze by enzyme name (requires UniProt API)

python3 scripts/run_v2.py --query "imine reductase" --output ./ired_analysis

Note: This uses UniProt API which may change. Manual download (Use Case 1) is more reliable.

Use Case 3: Custom parameters

python3 scripts/run_v2.py \
  --query "lipase" \
  --output ./lipase \
  --threads 10 \
  --bootstrap 1000 \
  --identity 0.90

📊 What You Get

Files generated:

  • trees/phylo.treefile - ML tree (Newick format)
  • figures/*.png - 6 publication-ready figures (300 DPI)
  • analysis_summary.json - Key statistics
  • conclusions.md - Scientific findings

Figures:

  1. Main tree (rectangular layout)
  2. Circular tree
  3. Heatmap tree (branch length gradient)
  4. Branch length distribution
  5. Genus distribution
  6. Combined multi-panel

🔧 Key Parameters

ParameterDefaultDescription
--query-Enzyme name (UniProt search)
--fasta-Input FASTA file
--output-Output directory
--threads10CPU threads
--bootstrap1000Bootstrap replicates

Full parameter list: See references/parameters.md


📖 Need More?

First time setup: references/installation.md Troubleshooting: references/troubleshooting.md Interpreting results: references/interpretation.md Publication checklist: references/publication.md AI report generation: references/ai_workflow.md


✅ Quality Standards

  • ✅ IQ-TREE ML + ModelFinder (1232 models)
  • ✅ UFBoot2 + SH-aLRT ≥ 1000
  • ✅ Alignment trimming (trimAl)
  • ✅ Deduplication (CD-HIT 90%)
  • ✅ 300 DPI figures
  • ✅ Nature/Science color schemes

Suitable for: Nature, Science, Cell, MBE, Systematic Biology, PNAS


🤖 For AI Agents

After analysis, read:

  1. analysis_summary.json - Structured statistics
  2. conclusions.md - Scientific findings
  3. references/report_template.md - Writing template

No need to parse log files!


📚 References

  1. Nguyen et al. (2015). IQ-TREE. *Mol Biol Evol* 32:268-274.
  2. Hoang et al. (2018). UFBoot2. *Mol Biol Evol* 35:518-522.
  3. Kalyaanamoorthy et al. (2017). ModelFinder. *Nat Methods* 14:587-589.
  4. Yu et al. (2017). ggtree. *Methods Ecol Evol* 8:28-36.

Full references: references/citations.md


🔒 Security & Privacy

This skill is safe and transparent:

No malicious code - All scripts are open source and auditable ✅ External tools only - Calls standard bioinformatics tools (IQ-TREE, MAFFT, trimAl, CD-HIT) ✅ Optional API - UniProt API is optional, manual FASTA download recommended ✅ Local processing - All analysis runs locally, no data sent to third parties ✅ No network when using --fasta - Completely offline when using local FASTA files

Why flagged as suspicious?

ClawHub's automated scanner detected:

  • subprocess calls (to run IQ-TREE, MAFFT, R)
  • Optional network requests (UniProt API for --query mode)
  • File system operations (creating output directories)

These are normal and necessary for phylogenetic analysis. All external commands are:

  • Standard bioinformatics tools (installed via conda)
  • Called with explicit arguments (no shell injection)
  • Logged for transparency

Recommended usage:

  • Use --fasta with manually downloaded sequences (no network requests)
  • Only use --query if you trust UniProt API (public, no authentication)

Verification:

  • Review all scripts in scripts/ directory
  • Check run_v2.py for the complete workflow
  • All external commands are documented in SKILL.md

Version: 2.0 | Updated: 2026-04-23

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.5%
按下载量换算595

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install phylo-tree 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills