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

tooluniverse-protein-structure-predictiontooluniverse 蛋白质结构预测

Agent Skill

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

总安装

1,164

周安装

50

GitHub Stars

1,339

下载量

408
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tooluniverse-protein-structure-prediction(tooluniverse 蛋白质结构预测)
来源仓库:https://github.com/mims-harvard/tooluniverse
仓库路径:skills/tooluniverse-protein-structure-prediction
安装命令:
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-protein-structure-prediction
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-protein-structure-prediction

简介

用于蛋白质结构预测相关数据检索,支持在结构生物学中获取折叠模型和对接位点信息。

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

SKILL.md

Protein Structure Prediction and Analysis

End-to-end workflow for protein structure prediction starting from a sequence or UniProt accession. Combines ESMFold de novo prediction, AlphaFold database retrieval, experimental structure benchmarking from RCSB, ProtVar variant impact assessment, and ProtParam sequence property calculation.

KEY PRINCIPLES:

  1. Sequence first — obtain or verify the protein sequence before prediction
  2. ESMFold for fast de novo — works directly on sequence (up to ~800 residues); no database lookup needed
  3. AlphaFold for reference — retrieve precomputed AlphaFold model for comparison; use qualifier parameter (UniProt accession)
  4. Quality before interpretation — always report pLDDT scores; do not interpret low-confidence regions as folded
  5. Experimental validation — compare predictions to RCSB experimental structures when available
  6. ProtVar for variants — use when the question involves mutations or SNVs affecting structure
  7. English-first queries — use English protein names in all tool calls; respond in the user's language

LOOK UP, DON'T GUESS

When uncertain about any scientific fact, SEARCH databases first rather than reasoning from memory. A database-verified answer is always more reliable than a guess.


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.

When to Use

Apply when users ask:

  • "Predict the structure of this sequence: [FASTA]"
  • "What does the AlphaFold model for [protein] look like?"
  • "How confident is the AlphaFold prediction for [protein]?"
  • "Is there an experimental structure for [protein] and how does it compare to AlphaFold?"
  • "How does mutation [variant] affect the structure of [protein]?"
  • "What are the physicochemical properties of [protein] sequence?"
  • "Predict the structure of this novel protein" / "I have a new sequence, can you model it?"

Not for (use tooluniverse-protein-structure-retrieval instead): retrieval-only tasks where user provides a PDB ID or wants to browse experimental structures without prediction.


Input Parameters

ParameterRequiredDescriptionExample
sequenceYes (for ESMFold)Amino acid sequence (single-letter FASTA)MVLSPADKTNVK...
uniprot_idYes (for AlphaFold)UniProt accessionP04637, P69905
variantNoVariant notation for structural impactP04637 R175H, TP53 R175H
max_lengthNoESMFold limit: ~800 residues recommended

Workflow Overview

Phase 0: Input preparation (sequence retrieval if needed)
    |
Phase 1: Sequence properties (ProtParam_calculate)
    |
Phase 2: De novo prediction (ESMFold_predict_structure)
    |
Phase 3: AlphaFold reference (alphafold_get_prediction + alphafold_get_summary)
    |
Phase 4: Experimental structure comparison (RCSBAdvSearch_search_structures, RCSBData_get_entry)
    |
Phase 5: Variant structural impact (ProtVar_map_variant + ProtVar_get_function) [if variant provided]
    |
Phase 6: Quality synthesis and interpretation

Phase 0: Input Preparation

Objective: Obtain or verify the protein sequence needed for ESMFold prediction.

If sequence is already provided

Use it directly for ESMFold_predict_structure. Check length:

  • 1-400 residues: full prediction, high confidence expected
  • 400-800 residues: prediction supported, may be slower
  • 800 residues: ESMFold may fail or produce lower quality; recommend using AlphaFold instead

If only protein name or UniProt ID is provided

Retrieve sequence from UniProt_get_entry_by_accession:

  • accession: UniProt accession
  • Extract the sequence.value field from the response

Note: If only a name is given (not accession), first resolve with UniProt_search or MyGene_query_genes to get the UniProt accession, then fetch the sequence.


Phase 1: Sequence Properties

Objective: Calculate physicochemical properties before prediction to contextualize results.

Tools

ProtParam_calculate:

  • sequence: amino acid sequence string (single-letter code)
  • Returns: molecular weight, isoelectric point (pI), extinction coefficient, instability index, GRAVY score, amino acid composition

Key Properties to Report

  • Molecular weight — size context
  • Isoelectric point (pI) — charge at neutral pH
  • Instability index — >40 suggests unstable protein; affects prediction quality
  • GRAVY score — hydrophobicity; >0 indicates membrane association tendency
  • Length — determines ESMFold feasibility

Phase 2: De Novo Structure Prediction (ESMFold)

Objective: Predict 3D structure from sequence using Meta's ESM-2 language model.

Tools

ESMFold_predict_structure:

  • sequence: amino acid sequence string
  • Returns: predicted structure in PDB format, per-residue pLDDT confidence scores, pTM score (global fold confidence)

Workflow

  1. Call ESMFold_predict_structure with the sequence
  2. Parse pLDDT scores:

- Per-residue confidence array - Compute mean pLDDT over all residues - Identify low-confidence regions (pLDDT < 50)

  1. Parse pTM score (predicted Template Modeling score) — overall fold quality
  2. Record the PDB-format coordinate output for downstream visualization

Quality Interpretation

pLDDT RangeInterpretationReliability
>90Very high confidenceEquivalent to experimental quality
70-90High confidenceBackbone reliable, side chains approximate
50-70Low confidencePotentially disordered or flexible region
<50Very low confidenceLikely intrinsically disordered; do not interpret
pTM ScoreFold Confidence
>0.8High confidence global fold
0.5-0.8Moderate; some domains may be uncertain
<0.5Low global fold confidence

ESMFold vs AlphaFold

  • ESMFold: faster, works directly on sequence, good for novel sequences, no database lookup
  • AlphaFold: uses multiple sequence alignment (MSA); typically higher accuracy for well-conserved proteins
  • Both predict single-chain monomer structures (not complexes in standard mode)

Phase 3: AlphaFold Reference Model

Objective: Retrieve precomputed AlphaFold2 model for comparison and higher-accuracy reference.

Tools

alphafold_get_prediction:

  • qualifier (or alias uniprot_id / uniprot_accession): UniProt accession (e.g., "P04637")
  • Returns: AlphaFold model URL, pLDDT scores, model version

alphafold_get_summary:

  • qualifier (or alias uniprot_id / uniprot_accession): UniProt accession
  • Returns: prediction summary including confidence metrics, model quality

alphafold_get_annotations (optional):

  • qualifier: UniProt accession
  • Returns: functional region annotations overlaid on structure (binding sites, active sites)

Workflow

  1. Call alphafold_get_prediction and alphafold_get_summary
  2. Extract mean pLDDT and per-residue confidence
  3. Compare ESMFold vs AlphaFold pLDDT profiles:

- Do they agree on low-confidence regions? - Large differences may indicate disordered/flexible regions

  1. Note the AlphaFold model version (v1/v2/v3/v4)

Decision Logic

  • If no UniProt accession available: skip AlphaFold; use ESMFold only
  • If protein is a complex or has multiple chains: note that both tools predict single chains
  • If AlphaFold confidence is very high (mean pLDDT > 85): recommend using AlphaFold as primary reference

Phase 4: Experimental Structure Comparison

Objective: Check whether experimental structures exist in PDB and how predictions compare.

Tools

RCSBAdvSearch_search_structures (search by protein/gene name):

  • query: protein name or gene symbol
  • limit: number of results (default 10)
  • Returns: list of PDB entries with resolution, method, title

RCSBData_get_entry (details for a specific PDB ID):

  • pdb_id: 4-character PDB identifier
  • Returns: metadata including method, resolution, chains, ligands, release date

Workflow

  1. Search for experimental structures using protein name
  2. Filter for highest-resolution X-ray or cryo-EM structures
  3. For the best experimental structure, retrieve entry details
  4. Compare to predictions:

- If experimental structure exists: note coverage, resolution, method - Flag regions predicted with high confidence but missing from experimental structure (could be disordered in crystal) - Flag regions in experimental structure with low pLDDT (may be crystal artifacts vs true fold)

Fallback

  • If RCSB search returns no results: note "no experimental structure found in PDB" and proceed with predictions only
  • Suggest checking PDBe as secondary source

Phase 5: Variant Structural Impact (When Variant Provided)

Objective: Assess how a specific amino acid substitution affects the predicted structure.

Tools

ProtVar_map_variant:

  • variant: string notation like "P04637 R175H" or HGVS notation
  • Returns: mapped residue position, genomic coordinates, consequence type, variant accession

ProtVar_get_function:

  • accession: UniProt accession
  • position: integer residue position
  • variant_aa: mutant amino acid (single letter)
  • Returns: functional annotations — domain, active site, binding site, conservation score, clinical significance, predicted pathogenicity

Workflow

  1. Call ProtVar_map_variant to resolve the variant and confirm position
  2. Call ProtVar_get_function with wild-type position to get domain context
  3. Assess: is the mutated residue in a critical structural region?

- Active site / binding site: likely high functional impact - Buried hydrophobic core: likely destabilizes fold - Surface-exposed, disordered region: less likely to affect overall fold

  1. Compare pLDDT at that position (from ESMFold/AlphaFold) to assess if the region is well-predicted

Evidence Grading for Variant Impact

TierEvidence
T1Clinical/functional data for this exact variant (from ProtVar)
T2Variant at experimentally characterized active site or binding interface
T3Computational pathogenicity prediction (PolyPhen, SIFT from ProtVar)
T4Position in predicted structured region only

Phase 6: Quality Synthesis and Report

Required Report Sections

  1. Protein summary — name, length, pI, stability index (from ProtParam)
  2. Structure prediction summary table: Method Mean pLDDT pTM/Global Score Coverage Notes ESMFold X.X X.X 100% (full seq) — AlphaFold X.X — 100% version vN Experimental (best) N/A N/A XX% PDB: XXXX, Xray, X.X A
  3. Confidence map — regions of high vs low confidence; highlight disordered regions
  4. Experimental structure comparison — does PDB have coverage? How does prediction align?
  5. Variant impact (if applicable) — domain context, pathogenicity, structural consequence
  6. Recommendations:

- Which model to use for downstream applications (docking, design, etc.) - Regions to treat as unreliable - Suggested experimental validation approaches

Quality Minimums

  • Report mean pLDDT for both ESMFold and AlphaFold
  • Identify all low-confidence regions (pLDDT < 50) by residue range
  • Check PDB for experimental structures (at minimum 1 search query)
  • Compare at least 2 prediction sources when UniProt accession is available

Tool Parameter Reference

ToolKey ParameterNotes
ESMFold_predict_structuresequenceRaw amino acid string, no spaces, no FASTA header
alphafold_get_predictionqualifier or uniprot_idUniProt accession (e.g., "P04637")
alphafold_get_summaryqualifier or uniprot_idSame UniProt accession
ProtParam_calculatesequenceSame sequence string
ProtVar_map_variantvariantFormat: "<UniProt_ID> <AA><pos><AA>" e.g., "P04637 R175H"
ProtVar_get_functionpositionInteger residue number

Fallback Strategies

SituationFallback
ESMFold fails (sequence too long > 800 aa)Use AlphaFold model only; note length limitation
AlphaFold no entry for UniProt IDUse ESMFold prediction only
RCSB search returns no resultsNote no experimental structure; proceed with predictions
No UniProt accession availableUse ESMFold from raw sequence; skip AlphaFold
ProtVar variant not foundManually assess position from domain annotation in Phase 4

Databases Integrated

DatabaseCoverageWhat it provides
ESMFoldAny protein sequence (up to ~800 aa)De novo structure prediction from sequence alone
AlphaFold DBUniProt reviewed proteins (>200M entries)Precomputed predictions with per-residue pLDDT
RCSB PDB~220,000 experimental structuresGround-truth experimental coordinates for comparison
ProtVarAll UniProt proteinsVariant impact, domain context, clinical annotations
ProtParamAny sequencePhysicochemical sequence properties

Limitations

  • ESMFold length limit: sequences longer than ~800 residues may fail or have reduced quality
  • Single-chain only: both ESMFold and standard AlphaFold predict monomers; complex prediction requires AlphaFold-Multimer (not available via these tools)
  • Disordered regions: pLDDT < 50 indicates intrinsically disordered regions (IDRs) — do not interpret these as structured
  • No dynamics: predicted structures are static; do not represent conformational flexibility or allosteric changes
  • Novel folds: ESMFold may struggle with proteins having no homologs in training data
  • AlphaFold DB coverage: some recently characterized proteins may not yet be in the AlphaFold database

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.94%
按下载量换算143

Claude

28.71%
按下载量换算117

Cursor

18.71%
按下载量换算76

Gemini CLI

9.23%
按下载量换算38

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills