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

personal-genomics-analysis个人基因组学分析

Agent Skill

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

总安装

7,045

周安装

285

GitHub Stars

1

下载量

2,212
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install personal-genomics-analysis

简介

个人基因组学分析处理 DNA 数据文件,生成健康风险与药物基因组学报告。

  • 适用于拥有 WeGene、23andMe 等基因检测结果的用户进行深度解读。
  • 支持 VCF、BAM 等格式文件导入与循证医学分析。
  • 安装命令为 openclaw skills install personal-genomics-analysis,需确保生物数据安全。
  • 使用前建议确认是否符合本地法规对基因数据处理的要求。

SKILL.md

name
personal-genomics
description
>

Personal Genomics Analysis Skill

Overview

This skill guides you through a structured, multi-phase workflow for analyzing consumer genetic testing data and producing actionable health insights. The workflow is interactive — you gather information from the user at key decision points rather than making assumptions.

The analysis pipeline is designed to be:

  • Evidence-based: every risk assessment cites published research (PMIDs)
  • Interactive: the user's medical history, lifestyle, and concerns shape the analysis
  • Progressive: start broad, then deep-dive into areas that matter most to the user
  • Actionable: end with concrete recommendations (supplements, lifestyle, screening schedule)

Phase 1: Data Intake & Format Detection

Supported Input Formats

Read references/supported_formats.md for detailed format specifications. In brief:

PlatformFile TypeKey Characteristics
WeGeneTSV (.txt)rsid \ chromosome \ position \ genotype
23andMeTSV (.txt)# rsid \ chromosome \ position \ genotype (comment header with #)
AncestryDNATSV (.txt)rsid \ chromosome \ position \ allele1 \ allele2 (separate allele columns)
VCF.vcf / .vcf.gzStandard VCF v4.x, may contain WGS or chip data
CRAM/BAM.cram / .bamAlignment files for variant verification, depth analysis

What to Do

  1. List the user's uploaded files and identify their formats by reading the first 20-50 lines
  2. Report back what you found: platform, number of variants, reference genome build (GRCh37/GRCh38 if detectable), data quality indicators
  3. Ask the user what they'd like to focus on. Present the available analysis modules:

- Health risk assessment (disease predisposition) - Pharmacogenomics (drug metabolism & response) - Nutrition & metabolism genetics - Exercise & fitness genetics - Ancestry (mtDNA/Y haplogroups if WGS data available) - All of the above (recommended for first-time analysis)

Parsing Strategy

Write a Python script that:

  • Auto-detects the input format from file headers
  • Builds a unified genotype dictionary: {rsid: genotype_string}
  • For VCF files, also indexes by chr:pos for position-based lookups
  • Handles both compressed (.gz) and uncompressed files
  • Reports parsing statistics (total variants, by chromosome, etc.)

When both chip data (WeGene/23andMe) and WGS (VCF) are available, use a dual-source lookup strategy: check chip data first (faster), fall back to VCF by rsid or chr:pos. This maximizes coverage since chip and WGS may cover different variant sets.

Phase 2: Initial Comprehensive Analysis

SNP Database

Read references/snp_database.md for the curated SNP database organized by category. The database covers ~120 clinically relevant SNPs across these categories:

  • Health risks: cancer (BRCA1/2), cardiovascular (9p21.3, MTHFR), metabolic (TCF7L2),

neurological (APOE, LRRK2), autoimmune, and more

  • Pharmacogenomics: CYP2C19, CYP2D6, CYP2C9, CYP1A2, SLCO1B1, VKORC1, ALDH2, etc.
  • Nutrition: lactose tolerance (MCM6), vitamin metabolism (MTHFR, VDR, BCMO1, FUT2),

caffeine sensitivity (CYP1A2), alcohol flush (ALDH2)

  • Exercise: muscle fiber type (ACTN3), endurance (PPARGC1A), recovery (IL6), VO2max (ACE)

Each SNP entry includes: gene, variant name, risk allele, condition/trait, evidence level, PMID reference, and a plain-language explanation.

Analysis Script Structure

Generate a Python analysis script that:

  1. Loads the unified genotype dictionary from Phase 1
  2. Looks up each SNP in the database
  3. Determines risk level based on genotype (homozygous risk, heterozygous, or normal)
  4. Handles special cases:

- APOE typing: requires combining rs429358 + rs7412 to determine ε2/ε3/ε4 status - CYP2C19 metabolizer status: combines multiple star-allele SNPs - MTHFR compound: checks both C677T (rs1801133) and A1298C (rs1801131)

  1. Generates an HTML report with:

- Summary dashboard (key findings, risk counts by category) - Tabbed sections for each category - Color-coded risk levels (high/medium/low/protective) - Citations for each finding

Report Output

Generate an interactive HTML report with:

  • Clean, readable design with high contrast (dark text on light backgrounds)
  • Sticky navigation tabs
  • Risk indicators with clear color coding
  • Expandable detail sections for each SNP
  • A summary section with the most clinically significant findings

Follow the user's language (Chinese or English) for all report text.

Phase 3: User Interview & Deep Dive

This is the critical interactive phase. After presenting initial results:

Gather Context

Ask the user about:

  1. Known health conditions — what diagnoses do they already have?
  2. Family history — especially first-degree relatives with serious conditions
  3. Current medications — for drug interaction awareness
  4. Lifestyle factors — diet, exercise, sun exposure, smoking/alcohol
  5. Specific concerns — what worries them most?

This information is essential because genetic risk is only part of the picture. A person with a family history of early heart attack AND multiple CAD risk SNPs faces very different odds than someone with the same SNPs but no family history.

Deep Risk Analysis

Based on the user's health profile, conduct a targeted deep-dive. Read references/deep_risk_snps.md for extended SNP panels organized by disease pathway:

  • Lipid metabolism (~20 SNPs): LDLR, APOB, PCSK9, HMGCR, CETP, LPL, APOA5, etc.
  • Coronary artery disease (~15 SNPs): 9p21.3, LPA, MTHFR, CRP, IL6, F5, F2, etc.
  • Uric acid / gout (~10 SNPs): SLC2A9, ABCG2, SLC22A12, SLC17A1, etc.
  • Diabetes risk (~10 SNPs): TCF7L2, KCNJ11, SLC30A8, PPARG, FTO, etc.
  • Statin pharmacogenomics (~5 SNPs): SLCO1B1, CYP3A4, ABCB1, etc.

For each category relevant to the user:

  1. Query ALL SNPs in the extended panel (use both chip + VCF dual-source)
  2. Tally risk alleles and categorize (high/moderate/low/protective)
  3. Compute a qualitative risk profile (not a numeric "score" — explain why)
  4. Cross-reference with the user's actual health status and family history
  5. Note any SNPs that could NOT be found (missing data)

Variant Verification (if CRAM/BAM available)

If the user has provided alignment files:

  • Use samtools/bcftools to verify key high-risk variants directly from reads
  • Report read depth and allele balance for critical SNPs
  • Flag any low-confidence calls

Note: samtools may need to be compiled from source in sandboxed environments. See references/tool_setup.md for instructions.

Ancestry Analysis (if WGS available)

For whole-genome sequencing data:

  • mtDNA haplogroup: Check diagnostic variants against PhyloTree. Important: VCF

files report variants against rCRS (which is haplogroup H). Absence of a variant means the person carries the rCRS allele at that position. Look for the 9bp deletion at position 8270-8278 (B haplogroup marker, common in East Asian populations).

  • Y chromosome haplogroup (if male): Check ISOGG diagnostic SNPs (e.g., M122 for

O2 haplogroup, common in East Asian populations).

Phase 4: Personalized Recommendations

Based on all gathered information, produce actionable recommendations.

Supplement Plan

Read references/supplement_guide.md for evidence-based supplement recommendations mapped to genetic findings. The guide covers:

  • Which genetic variants warrant which supplements
  • Dosage ranges with citations
  • Drug-supplement interactions to watch for
  • Priority tiers (core / recommended / optional)
  • Age-specific timing and duration advice
  • When to recheck labs

Always organize supplements into tiers:

  1. Core: strongly supported by genetics + current health status
  2. Recommended: good evidence, beneficial given risk profile
  3. Optional: supporting evidence, lower priority

Screening & Monitoring Schedule

Based on the risk profile, suggest:

  • Which lab tests to monitor and how often
  • Age milestones for specific screenings (e.g., coronary CTA at 30 if strong family history)
  • Target values for key metrics

Output Formats

Offer to generate:

  • HTML report — comprehensive, interactive, printable
  • Excel spreadsheet — dosing schedule table for daily reference
  • Summary document — one-page overview for sharing with a physician

Important Principles

Medical Disclaimer

Every report MUST include a clear disclaimer: genetic analysis provides risk estimates, not diagnoses. Results should be discussed with a qualified healthcare provider. Consumer genetic testing has limitations in coverage and accuracy compared to clinical-grade testing.

Evidence Standards

  • Always cite PMIDs for risk associations
  • Distinguish between GWAS-level evidence and functional/clinical evidence
  • Note when evidence is primarily from non-Asian populations (if the user appears to be

of East Asian descent based on their data or stated ethnicity)

  • Use language like "increased risk" rather than "you will get"

Language

Follow the user's language. If the user writes in Chinese, produce reports in Chinese. If in English, use English. For SNP names and gene symbols, always keep the standard scientific nomenclature regardless of language.

Iterative Approach

Don't try to do everything at once. The workflow is designed as a conversation:

  1. Parse → show what you found → ask what to focus on
  2. Initial analysis → present results → gather health context
  3. Deep dive → present findings → discuss implications
  4. Recommendations → deliver in requested format

Each phase should end with a clear handoff to the user before proceeding.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.51%
按下载量换算1,715

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills