Agent SkillsRunchuan-BU/BioClaw › structural-biology

structural-biology

GitHub

用于检索AlphaFold结构、下载坐标与置信度文件,并解读pLDDT/PAE以进行结构引导的生物注释。适用于已知UniProt ID的结构获取与置信度评估场景。

container/skills/structural-biology/SKILL.md Runchuan-BU/BioClaw

Trigger Scenarios

需要根据UniProt ID获取蛋白质三维结构 需要解析或解释AlphaFold预测的置信度分数 缺乏实验结构需使用预测模型补充

Install

npx skills add Runchuan-BU/BioClaw --skill structural-biology -g -y
More Options

Non-standard path

npx skills add https://github.com/Runchuan-BU/BioClaw/tree/main/container/skills/structural-biology -g -y

Use without installing

npx skills use Runchuan-BU/BioClaw@structural-biology

指定 Agent (Claude Code)

npx skills add Runchuan-BU/BioClaw --skill structural-biology -a claude-code -g -y

安装 repo 全部 skill

npx skills add Runchuan-BU/BioClaw --all -g -y

预览 repo 内 skill

npx skills add Runchuan-BU/BioClaw --list

SKILL.md

Frontmatter
{
    "name": "structural-biology",
    "tool_type": "python",
    "description": "Structure retrieval, confidence-aware AlphaFold DB usage, coordinate download, PAE and pLDDT interpretation, and structure-guided biological annotation.",
    "primary_tool": "AlphaFold DB"
}

Structural Biology

Version Compatibility

Reference examples assume:

  • biopython 1.84+
  • AlphaFold DB public API current format
  • optional visualization stack such as py3Dmol or PyMOL

Verify before use:

  • Python: python -c "import Bio; print(Bio.__version__)"

Overview

Use this skill when the task is:

  • retrieving AlphaFold-predicted structures by UniProt accession
  • downloading coordinate and confidence files
  • reading pLDDT or PAE to judge confidence
  • mapping sequence findings onto structure

When To Use This Skill

  • a UniProt accession or known protein target exists
  • experimental structure is absent or incomplete
  • the user needs confidence-aware structural interpretation

Quick Route

  • known UniProt accession: query AlphaFold DB first
  • novel designed sequence without AlphaFold DB entry: use a separate prediction workflow such as ColabFold
  • structure interpretation request: always inspect pLDDT and PAE before making mechanistic claims

Progressive Disclosure

Expected Inputs

  • UniProt accession or sequence context
  • optional residue list, mutation list, or ligand site hypothesis

Expected Outputs

  • results/structures/AF-<accession>.cif
  • results/structures/AF-<accession>.pdb
  • results/confidence/AF-<accession>-confidence.json
  • results/confidence/AF-<accession>-pae.json
  • figures/AF-<accession>-pae.png

Starter Pattern

from Bio.PDB import alphafold_db

prediction = next(alphafold_db.get_predictions("P00520"))
cif_path = alphafold_db.download_cif_for(prediction, directory="results/structures")
print(cif_path)

Confidence Thresholds

pLDDT

pLDDT Interpretation
> 90 very high confidence
70-90 good backbone confidence
50-70 low confidence
< 50 likely disorder or unreliable local structure

PAE

PAE Interpretation
< 5 Å confident relative positioning
5-15 Å moderate uncertainty
> 15 Å domain orientation may be unreliable

Workflow

1. Choose the structure source

  • experimental structure if available and suitable
  • AlphaFold DB for known proteins with UniProt accessions
  • separate prediction workflow for novel sequences

2. Retrieve coordinates and confidence files

Download:

  • mmCIF or PDB
  • confidence JSON
  • PAE JSON

3. Inspect confidence before interpretation

Do not map mutations or infer interfaces from low-confidence regions without saying so.

4. Annotate the biological question

Map domains, active sites, mutations, motifs, or interfaces onto the structure.

5. Export reusable artifacts

Save coordinates, confidence files, and a PAE heatmap or equivalent summary.

Output Artifacts

results/
├── structures/
│   ├── AF-P00520-F1-model_v4.cif
│   └── AF-P00520-F1-model_v4.pdb
└── confidence/
    ├── AF-P00520-F1-confidence_v4.json
    └── AF-P00520-F1-predicted_aligned_error_v4.json
figures/
└── AF-P00520-F1-pae.png

Quality Review

  • pLDDT must be reviewed before claiming local residue geometry is trustworthy
  • PAE must be reviewed before claiming domain-domain arrangement is trustworthy
  • residue numbering and chain mapping must be checked before mutation interpretation
  • low-confidence or disordered regions should be labeled explicitly

Anti-Patterns

  • treating every AlphaFold region as equally reliable
  • ignoring PAE when discussing domain orientation
  • mapping variants onto mismatched residue numbering
  • using AlphaFold DB retrieval as if it were de novo prediction for novel sequences

Related Skills

  • Proteomics
  • Pathway Analysis

Optional Supplements

  • alphafold-database

Version History

  • a79b8c4 Current 2026-07-25 11:45

Same Skill Collection

.claude/skills/add-figure/SKILL.md
.claude/skills/add-gmail/SKILL.md
.claude/skills/add-omics-runtime-pack/SKILL.md
.claude/skills/add-telegram-swarm/SKILL.md
.claude/skills/add-telegram/SKILL.md
.claude/skills/add-voice-transcription/SKILL.md
.claude/skills/convert-to-docker/SKILL.md
.claude/skills/customize/SKILL.md
.claude/skills/debug/SKILL.md
.claude/skills/setup/SKILL.md
.claude/skills/x-integration/SKILL.md
container/skills/agent-browser/SKILL.md
container/skills/atac-seq/SKILL.md
container/skills/bio-tools/SKILL.md
container/skills/blast-search/SKILL.md
container/skills/cell-annotation/SKILL.md
container/skills/chip-seq/SKILL.md
container/skills/differential-expression/SKILL.md
container/skills/metagenomics/SKILL.md
container/skills/proteomics/SKILL.md
container/skills/pubmed-search/SKILL.md
container/skills/query-alphafold/SKILL.md
container/skills/query-clinvar/SKILL.md
container/skills/query-ensembl/SKILL.md
container/skills/query-geo/SKILL.md
container/skills/query-interpro/SKILL.md
container/skills/query-kegg/SKILL.md
container/skills/query-opentarget/SKILL.md
container/skills/query-pdb/SKILL.md
container/skills/query-reactome/SKILL.md
container/skills/query-stringdb/SKILL.md
container/skills/query-uniprot/SKILL.md
container/skills/report-template/SKILL.md
container/skills/scrna-preprocessing-clustering/SKILL.md
container/skills/sds-gel-review/SKILL.md
container/skills/sec-report/SKILL.md
container/skills/sequence-analysis/SKILL.md
container/skills/skills-hub/SKILL.md

Metadata

Files
0
Version
a79b8c4
Hash
54ba61b7
Indexed
2026-07-25 11:45

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 06:28
浙ICP备14020137号-1 $Гость$