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

bioinformatics-visualization生物信息学可视化

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

212

周安装

9

GitHub Stars

12

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于 iTOL 树图数据集格式处理与可视化问题排查。

  • 适合在系统发育树标注、物种标记和颜色形状映射等场景中使用。
  • 支持 DATASET_BINARY 格式,确保与 iTOL 兼容并提供字段与图例配置。
  • 安装需确认权限范围和维护状态,可能涉及联网、命令执行或文件读写操作。
  • bioinformatics-visualization 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Bioinformatics Visualization


iTOL Dataset Formats and Troubleshooting

Choosing the Right Dataset Type

DATASET_BINARY (Recommended for markers/symbols):

  • More reliable than DATASET_SYMBOL
  • All species must be listed with binary values (0 or 1)
  • Simpler format, better iTOL compatibility
  • Use for: presence/absence markers, technology indicators, categorical highlights

Format example:

DATASET_BINARY
SEPARATOR TAB

DATASET_LABEL	CLR Technology
COLOR	#ff0000

LEGEND_TITLE	Sequencing Technology
LEGEND_SHAPES	2
LEGEND_COLORS	#ff0000
LEGEND_LABELS	CLR (PacBio)

FIELD_SHAPES	2
FIELD_COLORS	#ff0000
FIELD_LABELS	CLR

DATA
Species_name_1	1
Species_name_2	0
Species_name_3	1

DATASET_SYMBOL (Less reliable):

  • Can be finicky about format
  • Per-species shape/size/color specifications complex
  • May not display correctly even with valid format
  • Avoid unless BINARY doesn't meet needs

DATASET_COLORSTRIP (Good for gradients):

  • Reliable for color gradients (e.g., temporal data, continuous values)
  • Only species with data need to be listed
  • Good for non-binary categorical or continuous data

Common iTOL Errors and Fixes

Error: "Unknown variable 'SYMBOL_SHAPE'"

  • Cause: Mixing global symbol settings with per-species data
  • Fix: Switch to DATASET_BINARY format

Error: "Invalid color '1' for node X"

  • Cause: DATASET_SYMBOL data format mismatch
  • Fix: Use DATASET_BINARY instead, format: species<tab>0_or_1

Symbols not appearing on tree:

  • Likely cause: DATASET_SYMBOL format issues
  • Fix: Convert to DATASET_BINARY
  • Verify: Check that all species in config exist in tree file

Species Name Compatibility

Critical: Species names must match exactly between tree and annotation files

Common issues:

  1. Case sensitivity: "Alca Torda" vs "Alca_torda"
  2. Spaces vs underscores: Always use underscores in tree format
  3. Subspecies names: Handle three-part names carefully

Fix for case sensitivity:

# Convert scientific names to tree format with case normalization
df['species_tree'] = df['scientific_name'].str.replace(' ', '_')
# Fix uppercase after underscore (Alca_Torda -> Alca_torda)
df['species_tree'] = df['species_tree'].str.replace(
    r'_([A-Z])',
    lambda m: '_' + m.group(1).lower(),
    regex=True
)

Validation pattern:

# Always validate species compatibility
import re

# Extract species from tree
with open('tree.nwk') as f:
    tree_content = f.read()
tree_species = set(re.findall(r'([A-Z][a-z]+_[a-z]+)', tree_content))

# Check config species
config_species = set(df['species_tree'])
missing = config_species - tree_species

if missing:
    print(f"Species in config but not in tree: {missing}")

Color Gradients for Temporal Data

Effective color schemes:

Temporal progression (old → new):

  • Light Yellow → Dark Red (ColorBrewer YlOrRd)
  • Clearly shows progression from past to present
  • Example: #ffffcc (2019) → #b10026 (2025)

Avoid:

  • Blue → Yellow → Red (confusing middle point)
  • Diverging palettes for sequential data

ColorBrewer palettes for sequential data:

  • YlOrRd: Yellow-Orange-Red (temporal, intensity)
  • YlGn: Yellow-Green (growth, vegetation)
  • PuBuGn: Purple-Blue-Green (water, depth)

Debugging Workflow

  1. Generate config file
  2. Upload to iTOL (https://itol.embl.de)
  3. If errors: Save error messages to file
  4. Check format: BINARY vs SYMBOL vs COLORSTRIP
  5. Validate species names: Match against tree file
  6. Test with minimal dataset: 5-10 species first
  7. Switch formats if needed: SYMBOL → BINARY usually works

Related Skills

  • data-visualization: General visualization best practices
  • bioinformatics/fundamentals: Core bioinformatics concepts
  • bioinformatics/phylogenetics: Phylogenetic analysis workflows

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.33%
按下载量换算26

Claude

33.11%
按下载量换算25

Cursor

19.3%
按下载量换算14

Gemini CLI

9.86%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills