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

tooluniverse-pathway-disease-genetics工具宇宙途径疾病遗传学

Agent Skill

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

总安装

1,152

周安装

49

GitHub Stars

1,331

下载量

404
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tooluniverse-pathway-disease-genetics(工具宇宙途径疾病遗传学)
来源仓库:https://github.com/mims-harvard/tooluniverse
仓库路径:skills/tooluniverse-pathway-disease-genetics
安装命令:
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-pathway-disease-genetics
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-pathway-disease-genetics

简介

用于疾病相关通路与遗传变异检索,支持在转化医学中关联基因突变与病理机制。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中执行致病通路挖掘和风险因子分析任务。
  • 通过 npx skills add 命令从 GitHub 安装,需确认仓库权限及是否涉及网络访问或外部 API 调用。
  • 建议在使用前核实数据来源更新频率,避免依赖过期或未经验证的信息。
  • 注意该技能主要用于信息检索,不直接提供分析结果,需结合上下文进行解读和应用。

SKILL.md

COMPUTE, DON'T DESCRIBE

When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.

Pathway-Disease Genetics: GWAS to Drug Targets via Pathways

Connect genome-wide association study (GWAS) variants to biological pathways for mechanistic understanding and drug target discovery.

When to Use

  • "What pathways are disrupted in [disease] based on GWAS?"
  • "Which GWAS genes for [trait] are in druggable pathways?"
  • "Map [SNP/variant] to its causal gene and pathway"
  • "Find drug targets from GWAS data for [disease]"
  • "What is the eQTL evidence for [gene] in [tissue]?"

Core Reasoning Principles

Gene-to-Pathway Reasoning

A gene found in GWAS doesn't tell you which pathway is dysregulated. To connect gene -> pathway -> disease mechanism, ask: what biological process does this gene participate in? Use Reactome/KEGG to find pathways, then ask: which of these pathways is relevant to the disease phenotype?

For example, TCF7L2 is the strongest T2D GWAS gene. It participates in the Wnt signaling pathway. The question is then: how does disrupted Wnt signaling impair beta-cell function or insulin secretion? That reasoning step — from pathway membership to disease mechanism — requires combining pathway data with tissue expression (GTEx) and disease biology.

Non-coding GWAS variants (the majority) rarely affect the nearest gene. They act through regulatory elements that alter expression of genes sometimes hundreds of kilobases away. Always check eQTL evidence before assuming the nearest gene is causal.

Pathway Convergence

Multiple disease genes mapping to the same pathway is stronger evidence than a single gene. If 5 GWAS hits for a disease all map to the NF-kB pathway, that is strong mechanistic evidence — the pathway is likely causal, not just coincidentally hit. If GWAS genes scatter across unrelated pathways, the mechanism is unclear, and you may need to look at upstream regulators or gene network hubs that connect the scattered genes.

When running enrichment (Reactome, KEGG, STRING), prioritize pathways that appear across multiple databases. A pathway enriched in all three is more reliable than one that appears in only one analysis.

Druggability Reasoning

A pathway with existing drugs targeting its components is more actionable than a novel pathway. Before proposing a target as novel, check: are any pathway members already drug targets? Use DGIdb and OpenTargets to survey approved and clinical-stage drugs in the pathway.

Priorities: (1) approved drug for a different indication hitting a GWAS-supported target = strong repurposing opportunity; (2) drug in clinical trials hitting a GWAS-supported target = accelerated validation path; (3) druggable gene with no existing drugs + strong GWAS evidence = novel target opportunity.

"Undruggable" by current modalities does not mean permanently undruggable. Flag such genes but do not dismiss them — they may be actionable via gene therapy, RNA therapeutics, or downstream pathway intervention.


Tool Selection Guide

Phase 1: Disease Resolution and GWAS Collection

Resolve disease name to ontology ID first:

  • OpenTargets_multi_entity_search_by_query_string(queryString=<disease>) — returns EFO/MONDO IDs

Collect GWAS signals:

  • gwas_search_associations(query=<disease>) — broad search
  • gwas_get_variants_for_trait(trait=<trait>, p_value_threshold=5e-8) — genome-wide significant hits
  • gwas_get_snps_for_gene(gene_symbol=<gene>) — gene-centric search

Gotcha: gwas_get_associations_for_trait is broken — use gwas_search_associations instead. gwas_get_snps_for_gene uses gene_symbol, not mapped_gene.

Phase 2: Variant Annotation and eQTL Evidence

Annotate variants:

  • EnsemblVEP_annotate_rsid(variant_id=<rsid>) — functional consequence, nearest gene
  • Response format is variable: list, {data, metadata}, or {error} — handle all three

Query eQTL evidence in tissue relevant to the disease (e.g., pancreas for T2D, brain for neurological):

  • GTEx_query_eqtl(gene_input=<gene>, tissue=<tissue>) — never pass empty gene_input
  • GTEx_get_expression_summary(gene_input=<gene>) — expression across all tissues
  • GTEx_get_median_gene_expression(gencode_id=[<versioned_id>], tissue_site_detail_id=[<tissue>]) — use versioned Ensembl IDs (e.g., ENSG00000148737.11) and gtex_v8

Phase 3: Pathway Enrichment

Run enrichment across multiple databases and cross-validate results:

  • ReactomeAnalysis_pathway_enrichment(identifiers="P04637 P38398...") — space-separated UniProt STRING, not an array
  • Reactome_map_uniprot_to_pathways(uniprot_id=<id>) — per-gene pathway membership
  • Reactome_get_participants(pathway_id=<R-HSA-XXXXX>) — all genes in a pathway
  • KEGG_get_gene_pathways(gene_id=<kegg_id>) — KEGG pathways for one gene
  • kegg_search_pathway(query=<disease_or_process>) — keyword search
  • STRING_functional_enrichment(protein_ids=[<genes>], species=9606) — GO/KEGG/Reactome with FDR
  • PANTHER_enrichment(gene_list="GENE1,GENE2,...", organism=9606, annotation_dataset="GO:0008150") — comma-separated STRING, not array

MetaCyc note: Currently unavailable (BioCyc requires authentication). Use KEGG or Reactome for metabolic pathways.

Phase 4: Druggability and Drug Landscape

  • DGIdb_get_gene_druggability(genes=[<gene_list>]) — categories: clinically actionable, druggable, etc.
  • DGIdb_get_drug_gene_interactions(genes=[<gene_list>]) — use genes param (array), not gene_name
  • OpenTargets_get_associated_drugs_by_target_ensemblID(ensemblId=<id>) — approved and clinical drugs
  • OpenTargets_target_disease_evidence(ensemblId=<id>, efoId=<disease_id>) — genetic + other evidence score

Three-Step Workflow

Step 1: GWAS to Causal Gene

  1. Resolve disease ID via OpenTargets_multi_entity_search_by_query_string
  2. Pull GWAS hits with gwas_get_variants_for_trait (p < 5e-8)
  3. Annotate each lead SNP with VEP — is it coding or non-coding?
  4. For non-coding variants, check eQTL via GTEx in the disease-relevant tissue
  5. Prioritize genes where: GWAS SNP is also a significant eQTL AND the tissue is biologically relevant to the disease
  6. Cross-check with OpenTargets_target_disease_evidence for additional genetic evidence

Evidence tiers: High = GWAS p < 5e-8 + eQTL colocalization in relevant tissue + coding variant; Medium = GWAS p < 5e-8 + eQTL in any tissue; Low = GWAS p < 5e-8 + positional mapping only.

Step 2: Gene Set to Pathway Enrichment

  1. Collect prioritized gene list from Step 1
  2. Run ReactomeAnalysis_pathway_enrichment and STRING_functional_enrichment
  3. Map each gene to KEGG pathways via KEGG_get_gene_pathways
  4. Identify pathways appearing across multiple databases (convergence = stronger evidence)
  5. For metabolic diseases, add tissue-specific network context via humanbase_ppi_analysis (all 5 params required: gene_list, tissue, max_node, interaction, string_mode)
  6. Rank pathways by enrichment FDR x number of GWAS genes x biological plausibility

Step 3: Pathway to Drug Target

  1. From enriched pathways, extract all member genes via Reactome_get_participants and KEGG_get_pathway_genes
  2. Assess druggability via DGIdb_get_gene_druggability
  3. Look up existing drugs via OpenTargets_get_associated_drugs_by_target_ensemblID
  4. Cross-reference pathway genes with GWAS genes: overlap = top candidate
  5. Classify each candidate: repurposing opportunity / novel target / undruggable (for now)

Final ranking: Genetic Evidence x Druggability x Pathway Centrality. Flag novel targets (strong genetic + no existing drugs) and repurposing opportunities (approved drug + genetic support in this disease).


Key Parameter Gotchas

  • gwas_get_snps_for_gene: use gene_symbol, not mapped_gene
  • OpenTargets_multi_entity_search_by_query_string: use queryString, not query
  • GTEx_query_eqtl: gene_input must never be empty
  • GTEx_get_median_gene_expression: use versioned gencode IDs; use gtex_v8
  • ReactomeAnalysis_pathway_enrichment: identifiers is space-separated STRING, not array
  • DGIdb_get_drug_gene_interactions: use genes (array), not gene_name
  • PANTHER_enrichment: gene_list is comma-separated STRING, not array
  • humanbase_ppi_analysis: all 5 params required
  • EnsemblVEP_annotate_rsid: use variant_id, not rsid
  • kegg_find_genes: include organism="hsa" for human genes

Limitations

  • GTEx eQTL lookup is not formal statistical colocalization (coloc/ENLOC) — treat as suggestive evidence
  • GWAS Catalog may not include recent publications; cross-check with Open Targets
  • Reactome and KEGG define pathways differently; some biology is in one but not the other
  • DGIdb druggability categories are heuristic — "undruggable" applies only to current modalities
  • eQTLs are tissue-specific; querying the wrong tissue may miss causal effects

Related Skills

  • tooluniverse-gwas-trait-to-gene: Focused GWAS-to-gene mapping
  • tooluniverse-gene-enrichment: Detailed enrichment analysis
  • tooluniverse-drug-target-validation: Deep target validation
  • tooluniverse-network-pharmacology: Network-level drug analysis
  • tooluniverse-variant-functional-annotation: Detailed variant interpretation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.38%
按下载量换算151

Claude

31.86%
按下载量换算129

Cursor

19.5%
按下载量换算79

Gemini CLI

8.84%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills