← 返回
未分类 中文

STRING PPI Query

Query STRING database for protein-protein interactions with confidence scores. Use this skill when: (1) Finding interaction partners for a protein of interes...
查询STRING数据库获取蛋白质-蛋白质相互作用及置信度评分。适用于以下场景:(1) 查找目标蛋白的相互作用伙伴。
hollyya
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 386
下载
💾 0
安装
1
版本
#latest

概述

STRING Protein-Protein Interaction Query

Query the STRING database to retrieve protein-protein interactions with comprehensive confidence scores.

When to Use

  • Find interaction partners for a protein (by UniProt ID)
  • Retrieve confidence scores for PPIs (experimental, text mining, database)
  • Build protein interaction networks for pathway analysis
  • Identify potential protein complexes or functional modules

Workflow

Basic Query

from open_biomed.tools.tool_registry import TOOLS

# Query STRING for interaction partners
tool = TOOLS["ppi_string_request"]
results, _ = tool.run(uniprot_id="P04637")  # TP53

# Access results
for interaction in results:
    print(f"{interaction['partner_gene']}: {interaction['combined_score']}")

Custom Parameters

# High confidence interactions only, limit to 20
results, _ = tool.run(
    uniprot_id="P04637",
    species=9606,           # Human (default)
    required_score=700,     # High confidence (default)
    limit=20                # Max interactors
)

Parameters

ParameterTypeDefaultDescription
---------------------------------------
uniprot_idstrrequiredUniProt accession (e.g., P04637)
speciesint9606NCBI taxonomy ID (9606=human)
required_scoreint700Min confidence (150/400/700/900)
limitint50Max interactors to return

Confidence Score Thresholds

ScoreLevelUse Case
------------------------
150LowExploratory analysis
400MediumBalanced retrieval
700HighReliable interactions (default)
900HighestVery confident only

Expected Output

[
  {
    "query_protein": "TP53",
    "partner_string_id": "9606.ENSP00000340989",
    "partner_gene": "SFN",
    "combined_score": 0.999,
    "scores": {
      "experimental": 0.981,
      "text_mining": 0.859,
      "database": 0.75,
      "coexpression": 0.0,
      "phylogenetic": 0.0,
      "gene_fusion": 0.0,
      "neighborhood": 0.0
    },
    "ncbi_taxon_id": 9606
  }
]

Score Interpretation

Score TypeSourceRange
---------------------------
combined_scoreWeighted combination0-1
experimentalWet-lab experiments0-1
text_miningLiterature co-occurrence0-1
databaseCurated databases (BioGRID, etc.)0-1
coexpressionExpression correlation0-1
phylogeneticPhylogenetic profiles0-1
gene_fusionFusion events0-1
neighborhoodGenomic proximity0-1

Error Handling

ErrorSolution
-----------------
No interactions foundLower required_score threshold
UniProt ID not recognizedVerify ID format (e.g., P04637)
Rate limitedWait and retry; STRING allows ~5 req/sec
Wrong speciesCheck NCBI taxonomy ID

Common Organism IDs

OrganismTaxonomy ID
-----------------------
Human9606
Mouse10090
Rat10116
E. coli83333
S. cerevisiae4932

References

  • examples/basic_query.py - Complete example script
  • references/score_details.md - Detailed score methodology
  • STRING API Docs: https://string-db.org/help/api/

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 09:07 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ChEMBL Query

hollyya
查询ChEMBL数据库,获取类药物化合物的生物活性数据。使用此技能的场景包括:(1)查找针对蛋白靶点的活性化合物(基于靶点的...
★ 0 📥 385

Biomedical Literature Search

hollyya
在PubMed和bioRxiv上检索生物医学文献,获取研究论文。适用于:(1)查找特定主题或疾病的研究论文;(2)……
★ 1 📥 613

UniProt Query

hollyya
查询 UniProt 数据库中的蛋白质序列、元数据并按条件检索。使用此技能的场景包括:(1) 通过 UniProt 登录号查找蛋白质信息...
★ 0 📥 372