get_protein_interactions
Retrieve protein-protein interactions within Reactome pathways. Specify the pathway ID and interaction type (e.g., protein-protein, regulatory, catalysis) to analyze molecular interactions in biological systems.
Instructions
Get protein-protein interactions within pathways
Input Schema
Name | Required | Description | Default |
---|---|---|---|
interactionType | No | Type of interactions to retrieve (default: all) | |
pathwayId | Yes | Reactome pathway stable identifier |
Input Schema (JSON Schema)
{
"properties": {
"interactionType": {
"description": "Type of interactions to retrieve (default: all)",
"enum": [
"protein-protein",
"regulatory",
"catalysis",
"all"
],
"type": "string"
},
"pathwayId": {
"description": "Reactome pathway stable identifier",
"type": "string"
}
},
"required": [
"pathwayId"
],
"type": "object"
}