Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

phylogeneticsphylogenetics 搜索

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

12

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:phylogenetics(phylogenetics 搜索)
来源仓库:https://github.com/delphine-l/claude_global
仓库路径:skills/phylogenetics
安装命令:
npx skills add https://github.com/delphine-l/claude_global --skill phylogenetics
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/delphine-l/claude_global --skill phylogenetics

简介

phylogenetics 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它提供系统发育树分析、可视化和注释管理专家指导,适用于进化生物学研究场景。
  • 使用方式包括 ITOL 注释文件问题排查、物种名称匹配检查和系统发育树版本比较。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写等操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Phylogenetics Skills

Expert knowledge for phylogenetic tree analysis, visualization, and annotation management.

ITOL Annotation File Troubleshooting

Common Issue: Species Name Mismatches

Problem: Species in tree file don't match annotation files, causing missing data in ITOL visualization.

Root Causes:

  1. Tree processing tools (e.g., TimeTree) may abbreviate species names
  2. Capitalization inconsistencies (e.g., Alca_Torda vs Alca_torda)
  3. Genus-only names replacing full binomial nomenclature

Solution Workflow:

  1. Compare tree versions: # Find species that exist in original but are different in processed tree grep -o "[A-Z][a-z]*_[a-z]*" Tree.nwk | sort -u > original_names.txt grep -o "[A-Z][a-z]*_[a-z]*" Tree_final.nwk | sort -u > processed_names.txt comm -3 original_names.txt processed_names.txt
  2. Identify incomplete names: # Species with genus only (no underscore after first word) with open('Tree_final.nwk', 'r') as f: tree = f.read() # Look for patterns like "Myxine:" instead of "Myxine_glutinosa:"
  3. Fix systematically:

- Update tree file with complete names - Update CSV data source - Update all ITOL annotation files (colorstrip, labels, branch colors) - Verify counts match across all files

  1. Verification checklist:

- All files have same species count - No "Other" or unknown categories remain - Legend counts match actual data counts - Test species display correctly

ITOL File Synchronization

Critical: When adding/removing species, update ALL annotation files:

  • Tree file (.nwk)
  • Data source (.csv)
  • itol_*_colorstrip_final.txt
  • itol_*_labels_final.txt
  • itol_branch_colors_final.txt

Verification script:

def verify_itol_sync():
    files = [
        'Tree_final.nwk',
        'itol_taxonomic_colorstrip_final.txt',
        'itol_taxonomic_labels_final.txt',
        'itol_branch_colors_final.txt'
    ]

    counts = {}
    for f in files:
        # Extract species list from each file
        species = extract_species(f)
        counts[f] = len(species)

    if len(set(counts.values())) == 1:
        print(f"✓ All files synchronized: {counts[files[0]]} species")
    else:
        print("✗ Files out of sync:")
        for f, count in counts.items():
            print(f"  {f}: {count}")

Fish Taxonomy Simplification for Visualization

User Preference vs Scientific Detail

Scientific accuracy often requires detailed fish categories:

  • Jawless fishes (Agnatha) - hagfish, lampreys
  • Cartilaginous fishes (Chondrichthyes) - sharks, rays
  • Lobe-finned fishes (Sarcopterygii) - coelacanths, lungfishes
  • Ray-finned fishes (Actinopterygii) - most bony fishes

For visualization clarity, users may prefer simplified categories:

  • Cartilaginous fishes (includes jawless)
  • Bony fishes (includes lobe-finned)

Implementation approach:

  1. Start with scientifically accurate categories
  2. Present to user for feedback
  3. Be ready to simplify based on user preference
  4. Document the choice made

Key insight: Users may prioritize:

  • Visual simplicity over taxonomic precision
  • Fewer categories for cleaner figures
  • Practical grouping for their specific use case

Always confirm categorization preferences when creating phylogenetic visualizations, especially for:

  • Fish classifications
  • Bacterial/archaeal groups
  • Plant lineages
  • Any domain with complex subdivisions

Bulk Editing ITOL Annotation Files

Safe Update Pattern

When updating ITOL annotation files, use this pattern to avoid data corruption:

def update_itol_file(input_file, species_updates):
    """
    Safely update ITOL annotation file.

    Args:
        input_file: Path to ITOL file
        species_updates: Dict mapping species -> (category, color)
    """
    with open(input_file, 'r') as f:
        lines = f.readlines()

    # Find critical line indices
    data_start = None
    legend_labels_idx = None
    legend_colors_idx = None

    for i, line in enumerate(lines):
        if line.strip() == 'DATA':
            data_start = i
        if line.startswith('LEGEND_LABELS'):
            legend_labels_idx = i
        if line.startswith('LEGEND_COLORS'):
            legend_colors_idx = i

    # Update data section
    for i in range(data_start + 1, len(lines)):
        if not lines[i].strip():
            continue
        parts = lines[i].strip().split('\t')
        if len(parts) >= 3:
            species = parts[0]
            if species in species_updates:
                new_cat, new_color = species_updates[species]
                lines[i] = f"{species}\t{new_color}\t{new_cat}\n"

    # Recalculate category counts
    category_counts = {}
    for i in range(data_start + 1, len(lines)):
        if not lines[i].strip():
            continue
        parts = lines[i].strip().split('\t')
        if len(parts) >= 3:
            category = parts[2]
            category_counts[category] = category_counts.get(category, 0) + 1

    # Update legend with accurate counts
    # [Build new legend line with actual counts]

    # Write atomically
    with open(input_file, 'w') as f:
        f.writelines(lines)

    return category_counts

Key principles:

  1. Always recalculate counts after changes
  2. Update legend to match actual data
  3. Handle all three file types (colorstrip, labels, branch colors)
  4. Verify changes with separate verification script

Related Skills

  • Analysis/Visualization: Color selection strategies for phylogenetic trees
  • VGP Pipeline: Species list management and quality control

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.01%
按下载量换算22

Claude

28.07%
按下载量换算18

Cursor

18.11%
按下载量换算11

Gemini CLI

10%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills