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

protein-interaction-network-analysis蛋白质相互作用网络分析

Agent Skill

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

总安装

22,057

周安装

685

GitHub Stars

1,312

下载量

4,297
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:protein-interaction-network-analysis(蛋白质相互作用网络分析)
来源仓库:https://github.com/mims-harvard/tooluniverse
仓库路径:skills/protein-interaction-network-analysis
安装命令:
npx skills add https://github.com/mims-harvard/tooluniverse --skill 'Protein Interaction Network Analysis'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mims-harvard/tooluniverse --skill 'Protein Interaction Network Analysis'

简介

protein-interaction-network-analysis 提供信息查找、检索与筛选能力,支持基于关键词或任务场景定位内容。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的研究类任务,可结合来源线索使用。
  • 通过 npx skills add 命令从 GitHub 仓库安装,建议查阅原始 README 了解具体功能。
  • 使用前请确认权限边界、项目维护状态,并留意是否涉及联网或命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Protein Interaction Network Analysis

Comprehensive protein interaction network analysis using ToolUniverse tools. Analyzes protein networks through a 4-phase workflow: identifier mapping, network retrieval, enrichment analysis, and optional structural data.

Domain Reasoning: Interaction Type Clarification

When asked about protein interactions, ask: physical interaction (do they bind?) or functional interaction (do they affect the same pathway)? STRING combines both — a high combined_score does not mean physical binding. For physical binding evidence, check the experimental score (escore) specifically. A high tscore (text mining) or dscore (database) with a low escore suggests co-annotation or co-citation, not direct binding.

LOOK UP DON'T GUESS: protein interaction scores, experimental evidence types, and whether two specific proteins have known co-crystal structures. Use STRING escore and BioGRID experimental data — do not infer binding from pathway co-membership alone.

Databases Used

DatabaseCoverageAPI KeyPurpose
STRING14M+ proteins, 5,000+ organismsNot requiredPrimary interaction source
BioGRID2.3M+ interactions, 80+ organismsRequiredFallback, curated data
SASBDB2,000+ SAXS/SANS entriesNot requiredSolution structures

4-Phase Workflow

  1. Identifier MappingSTRING_map_identifiers(): validate protein names, get STRING IDs
  2. Network RetrievalSTRING_get_network() (primary); BioGRID_get_interactions() (fallback, requires API key)
  3. Enrichment AnalysisSTRING_functional_enrichment() for GO/KEGG/Reactome; STRING_ppi_enrichment() to test functional coherence
  4. Structural Data (optional)SASBDB_search_entries() for SAXS/SANS solution structures

See python_implementation.py for runnable examples (example_tp53_analysis(), analyze_protein_network()).

Parameters

ParameterDefaultDescription
proteinsRequiredGene symbols or UniProt IDs
species9606NCBI taxonomy ID
confidence_score0.7Min interaction confidence (0–1)
include_biogridFalseBioGRID fallback (requires API key)
include_structureFalseSASBDB structural data (slower)

Confidence Score Guidelines

ScoreUse Case
0.4Exploratory analysis (default STRING threshold)
0.7Recommended — reliable interactions
0.9Core interactions only

Network Edge Fields (STRING)

Key fields returned per interaction edge:

  • score — combined confidence (0–1)
  • escore — experimental score (use for physical binding evidence)
  • dscore — database score
  • tscore — text mining score
  • ascore — coexpression score
  • preferredName_A, preferredName_B — gene names

Extended Analysis Tools

Signaling Pathways:

  • OmniPath_get_signaling_interactions — directed, signed PPI (stimulation/inhibition)
  • Reactome_map_uniprot_to_pathways — map proteins to Reactome pathways (param: uniprot_id)
  • ReactomeAnalysis_pathway_enrichment — pathway enrichment for gene sets

Druggability & Clinical Context:

  • DGIdb_get_drug_gene_interactions — drug interactions for hub proteins (param: genes as array)
  • DGIdb_get_gene_druggability — druggability categories
  • gnomad_get_gene_constraints — gene essentiality metrics (pLI, oe_lof)
  • civic_search_evidence_items — clinical evidence for mutations in network proteins
  • UniProt_get_function_by_accession — protein function annotation

Tool-Specific Notes

IntAct Interaction Data

interaction_ids are in the metadata field of the response, NOT at the top level:

interaction_ids = result.get("metadata", {}).get("interaction_ids", [])

BioGRID Chemical Interactions

BioGRID_get_chemical_interactions always includes a limitation note — chemical interaction coverage may be incomplete. Defaults to taxId=9606 (human) when no organism is provided.

IntAct protein_name Alias

IntAct tools accept protein_name as an alias parameter in addition to the original identifier parameter.

Domain Reasoning: Multimeric Assemblies & Binding Valency

LOOK UP DON'T GUESS: oligomeric state, subunit stoichiometry, and binding valency. Use RCSB PDB (RCSB_search_structures, RCSB_get_entry_info) or UniProt (UniProt_get_function_by_accession) to confirm whether a protein is a monomer, dimer, trimer, etc. Do not assume from gene name alone.

Calculating Multimer Valency from Binding Data

Valency = number of independent binding sites on a multimeric complex. A homodimer with one binding site per subunit has valency 2. A pentamer (e.g., IgM) with 2 Fab arms each has valency 10.

Key reasoning steps:

  1. Determine oligomeric state: Look up quaternary structure in PDB/UniProt. A "dimer" in solution may be a dimer-of-dimers (tetramer) crystallographically.
  2. Count binding sites per subunit: Each subunit contributes independently unless the binding site spans the interface (then the complex itself is the functional unit).
  3. Valency = subunits x sites_per_subunit (only if sites are independent). If binding at one site affects another, you have cooperativity, not simple valency.
  4. Avidity vs affinity: A multivalent complex binds more tightly than a single site (avidity effect). Apparent Kd_multivalent << Kd_monovalent. The enhancement depends on linker flexibility and target geometry.

Statistical Factors in Multimeric Binding

When a symmetric multimer binds a ligand, statistical factors affect the apparent rate constants:

  • First ligand binding: kon_apparent = n x kon_intrinsic (n equivalent sites available)
  • First ligand dissociation: koff_apparent = koff_intrinsic (only one ligand to dissociate)
  • General rule: For a multimer with n identical sites, binding to the i-th site has forward statistical factor (n - i + 1) and reverse statistical factor i.
  • Macroscopic vs microscopic Kd: Kd_macro(1st site) = Kd_micro / n. Kd_macro(last site) = n x Kd_micro. The ratio Kd_last / Kd_first = n^2 for non-cooperative binding.

If measured Kd values deviate from these statistical predictions, the protein shows positive cooperativity (Kd decreases more than expected) or negative cooperativity (Kd increases more than expected).

When to Use Binding Curve Analysis vs Stoichiometry

ApproachUse whenWhat it tells you
Stoichiometry (ITC, AUC, SEC-MALS)You need the number of binding partners per complexn (sites), not affinity
Binding curves (SPR, FP, ELISA)You need Kd and kineticsAffinity, but apparent Kd conflates valency and cooperativity
Hill plot (log-log binding curve)You suspect cooperativityHill coefficient nH: nH=1 non-cooperative, nH>1 positive, nH<1 negative
Scatchard plot (bound/free vs bound)Classic approach, now less commonCurved = multiple site classes or cooperativity; linear = single Kd

Obligate vs facultative multimers: An obligate dimer (e.g., many kinases) has NO monomeric activity. If your "purified protein" shows no activity, check if dimer formation is required. Use SEC or native PAGE to confirm oligomeric state. Low protein concentration, high salt, or wrong pH can dissociate obligate multimers.

Domain Reasoning: Coiled-Coil Oligomeric State Prediction

  • Heptad repeat: (abcdefg)n where positions a and d are hydrophobic core residues.
  • Oligomeric state from packing: dimer (leucine zipper, Leu at d), trimer (Ile/Val at a, Leu at d), tetramer (Leu at both a+d), pentamer (complex mixed packing, e.g., Trp or polar residues at a).
  • Heptad net diagram: map residues onto helical wheel; a+d form the hydrophobic core interface. The identity of a/d residues determines packing geometry and thus oligomeric state.
  • Polar residues at a/d (Asn, Gln) specify parallel vs antiparallel orientation and can select for specific oligomeric states.
  • LOOK UP: search PubMed for "[sequence motif] coiled coil oligomeric state" and check CC+ or SOCKET databases before predicting oligomeric state from sequence alone.

Domain Reasoning: Detergent Effects on Membrane Proteins

  • Mild detergents (DDM, LMNG, CHAPS, digitonin) preserve native oligomeric state and lipid interactions; preferred for structural studies.
  • Harsh detergents (SDS, OG at high concentration above CMC) can dissociate native complexes and strip stabilizing lipids.
  • Native MS in different detergents reveals whether specific lipids stabilize oligomeric assemblies; comparing CHAPS vs OG results distinguishes detergent-stable from lipid-dependent oligomers.

Protein Identification Questions

For "what protein does X" questions: ALWAYS search UniProt and PubMed first — do not guess from memory. Key pathways to know:

  • Amyloid clearance: collagen degradation by matrix metalloproteinases is required to expose amyloid deposits, allowing macrophage engulfment. The answer is collagen, not serum amyloid P (SAP) or other amyloid-binding proteins.
  • When a question asks "what protein", give JUST the protein name — no abbreviations, descriptions, or qualifications.

Troubleshooting

  • No interactions found: verify protein names (case-sensitive), try confidence_score=0.4
  • BioGRID not working: set BIOGRID_API_KEY in environment; STRING works without a key
  • Verbose output: filter with 2>&1 | grep -v "Error loading tools" (see KNOWN_ISSUES.md)

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.16%
按下载量换算1,683

Claude

30.43%
按下载量换算1,308

Cursor

17.94%
按下载量换算771

Gemini CLI

10.04%
按下载量换算431

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills