find_pathways_by_disease
Identify biological pathways linked to a specific disease using Reactome's pathway data, facilitating research on disease mechanisms.
Instructions
Find disease-associated pathways and mechanisms
Input Schema
Name | Required | Description | Default |
---|---|---|---|
disease | Yes | Disease name or DOID identifier | |
size | No | Number of pathways to return (1-100, default: 25) |
Input Schema (JSON Schema)
{
"properties": {
"disease": {
"description": "Disease name or DOID identifier",
"type": "string"
},
"size": {
"description": "Number of pathways to return (1-100, default: 25)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"disease"
],
"type": "object"
}