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

pdb-database数据库

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

659

周安装

28

GitHub Stars

公开资料未说明

下载量

231
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:pdb-database(数据库)
来源仓库:https://github.com/aminoanalytica/amina-skills
仓库路径:skills/pdb-database
安装命令:
npx skills add https://github.com/aminoanalytica/amina-skills --skill pdb-database
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aminoanalytica/amina-skills --skill pdb-database

简介

pdb-database 用于访问 RCSB Protein Data Bank,包含超过 20 万个实验确定的分子结构和计算模型。

  • 适用于结构检索、相似性搜索、数据集构建和药物发现等场景。
  • 支持按 PDB ID 下载坐标文件或通过序列或三维折叠进行相似性搜索。
  • 安装命令:npx skills add https://github.com/aminoanalytica/amina-skills --skill pdb-database。
  • 使用前请确认数据库访问权限和数据下载配额。

SKILL.md

RCSB Protein Data Bank

The Protein Data Bank hosts over 200,000 experimentally determined macromolecular structures plus computed models from AlphaFold and ModelArchive. This skill provides programmatic access to search, download, and analyze structural data.

Applicable Scenarios

TaskExamples
Structure RetrievalDownload coordinates for a known PDB ID
Similarity SearchFind structures similar by sequence or 3D fold
Metadata AccessGet resolution, method, organism, ligands
Dataset BuildingCompile structures for ML training or analysis
Drug DiscoveryIdentify ligand-bound structures for a target
Quality FilteringSelect high-resolution, well-refined structures

Setup

pip install rcsb-api requests

The rcsb-api package (v1.5.0+) provides:

  • rcsbapi.search - Query construction and execution
  • rcsbapi.data - DataQuery for batch retrieval

Quick Reference

Search Queries

from rcsbapi.search import TextQuery, AttributeQuery, SeqSimilarityQuery, StructSimilarityQuery

# Text search
results = list(TextQuery("kinase inhibitor")())

# Filter by organism (use string attribute paths)
human = AttributeQuery(
    attribute="rcsb_entity_source_organism.scientific_name",
    operator="exact_match",
    value="Homo sapiens"
)

# Filter by resolution
high_res = AttributeQuery(
    attribute="rcsb_entry_info.resolution_combined",
    operator="less",
    value=2.0
)

# Filter by experimental method
xray = AttributeQuery(
    attribute="exptl.method",
    operator="exact_match",
    value="X-RAY DIFFRACTION"
)

# Combine queries: & (AND), | (OR), ~ (NOT)
results = list((TextQuery("kinase") & human & high_res)())

# Sequence similarity (MMseqs2) - minimum 25 residues required
seq_query = SeqSimilarityQuery(
    value="VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSH",
    evalue_cutoff=1e-5,
    identity_cutoff=0.7
)

# Structure similarity (3D fold)
struct_query = StructSimilarityQuery(
    structure_search_type="entry_id",
    entry_id="4HHB"
)

Data Retrieval (REST API)

The rcsb-api package's data module has limited functionality. Use the REST API directly for metadata:

import requests

def fetch_entry(pdb_id: str) -> dict:
    """Fetch entry metadata from RCSB REST API."""
    resp = requests.get(f"https://data.rcsb.org/rest/v1/core/entry/{pdb_id}")
    resp.raise_for_status()
    return resp.json()

# Example usage
data = fetch_entry("4HHB")
print(data["struct"]["title"])
print(data["rcsb_entry_info"]["resolution_combined"])

# Polymer entity (chain info + sequence)
def fetch_polymer_entity(pdb_id: str, entity_id: int = 1) -> dict:
    resp = requests.get(f"https://data.rcsb.org/rest/v1/core/polymer_entity/{pdb_id}/{entity_id}")
    resp.raise_for_status()
    return resp.json()

entity = fetch_polymer_entity("4HHB", 1)
sequence = entity["entity_poly"]["pdbx_seq_one_letter_code"]

File Downloads

FormatURL Pattern
PDBhttps://files.rcsb.org/download/{ID}.pdb
mmCIFhttps://files.rcsb.org/download/{ID}.cif
Assemblyhttps://files.rcsb.org/download/{ID}.pdb1
FASTAhttps://www.rcsb.org/fasta/entry/{ID}
import requests
from pathlib import Path

def download_structure(pdb_id: str, fmt: str = "cif", outdir: str = ".") -> Path:
    url = f"https://files.rcsb.org/download/{pdb_id}.{fmt}"
    resp = requests.get(url)
    resp.raise_for_status()
    outpath = Path(outdir) / f"{pdb_id}.{fmt}"
    outpath.write_text(resp.text)
    return outpath

Common Workflows

Find High-Quality Human Structures

from rcsbapi.search import TextQuery, AttributeQuery

query = (
    TextQuery("receptor") &
    AttributeQuery(
        attribute="rcsb_entity_source_organism.scientific_name",
        operator="exact_match",
        value="Homo sapiens"
    ) &
    AttributeQuery(
        attribute="rcsb_entry_info.resolution_combined",
        operator="less",
        value=2.5
    ) &
    AttributeQuery(
        attribute="exptl.method",
        operator="exact_match",
        value="X-RAY DIFFRACTION"
    )
)
results = list(query())

Batch Metadata Retrieval

import requests
import time

def fetch_batch(pdb_ids: list, delay: float = 0.3) -> dict:
    """Fetch metadata with rate limiting."""
    results = {}
    for pdb_id in pdb_ids:
        try:
            resp = requests.get(f"https://data.rcsb.org/rest/v1/core/entry/{pdb_id}")
            resp.raise_for_status()
            data = resp.json()
            results[pdb_id] = {
                "title": data["struct"]["title"],
                "resolution": data.get("rcsb_entry_info", {}).get("resolution_combined"),
                "method": data.get("exptl", [{}])[0].get("method"),
            }
        except Exception as e:
            results[pdb_id] = {"error": str(e)}
        time.sleep(delay)
    return results

Find Drug-Bound Structures

from rcsbapi.search import AttributeQuery

# Find structures containing imatinib (ligand ID: STI)
query = AttributeQuery(
    attribute="rcsb_nonpolymer_entity_instance_container_identifiers.comp_id",
    operator="exact_match",
    value="STI"
)
drug_complexes = list(query())

GraphQL for Complex Queries

import requests

query = """
{
  entry(entry_id: "4HHB") {
    struct { title }
    rcsb_entry_info {
      resolution_combined
      deposited_atom_count
    }
    polymer_entities {
      rcsb_polymer_entity { pdbx_description }
      entity_poly { pdbx_seq_one_letter_code }
    }
  }
}
"""

response = requests.post(
    "https://data.rcsb.org/graphql",
    json={"query": query}
)
result = response.json()["data"]["entry"]

Key Concepts

TermDefinition
PDB ID4-character alphanumeric code (e.g., "4HHB"). AlphaFold uses "AF_" prefix
EntityDistinct molecular species. A homodimer has one entity appearing twice
ResolutionQuality metric in angstroms. Lower is better; <2.0 Å is high quality
Biological AssemblyFunctional oligomeric state (may differ from asymmetric unit)
mmCIFModern format replacing legacy PDB; required for large structures

Common Attribute Paths

Use these string paths with AttributeQuery:

AttributeDescription
rcsb_entity_source_organism.scientific_nameSource organism (e.g., "Homo sapiens")
rcsb_entry_info.resolution_combinedResolution in angstroms
exptl.methodExperimental method (X-RAY DIFFRACTION, ELECTRON MICROSCOPY, SOLUTION NMR)
rcsb_nonpolymer_entity_instance_container_identifiers.comp_idLigand/small molecule ID
struct.titleStructure title
rcsb_accession_info.deposit_dateDeposition date

Best Practices

PracticeRationale
Use mmCIF formatPDB format has atom count limits
Filter by resolution<2.5 Å for most analyses; <2.0 Å for detailed work
Check experimental methodX-ray vs cryo-EM vs NMR have different quality metrics
Rate limit requests2-3 req/s to avoid 429 errors
Cache downloadsStructures rarely change after release
Prefer GraphQLReduces requests for complex data needs

Troubleshooting

IssueResolution
404 on entry fetchEntry may be obsoleted; check RCSB website for superseding ID
429 Too Many RequestsImplement exponential backoff; reduce request rate
Empty search resultsCheck query syntax; use query.to_dict() to debug
Large structure failsUse mmCIF format instead of PDB
Missing sequence dataQuery polymer entity endpoint, not entry

References

See references/api-reference.md for:

  • Complete REST endpoint documentation
  • All searchable attributes and operators
  • Advanced query patterns
  • Rate limiting strategies

External Links

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.06%
按下载量换算81

Claude

31.48%
按下载量换算73

Cursor

20.22%
按下载量换算47

Gemini CLI

10.07%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills