find_pathways_by_gene
Identify pathways associated with a specific gene or protein using gene symbols or UniProt IDs, with species filtering capabilities. Access Reactome's pathway data for biological insights.
Instructions
Find all pathways containing a specific gene or protein
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gene | Yes | Gene symbol or UniProt ID (e.g., BRCA1, P04637) | |
species | No | Species name or taxon ID (default: Homo sapiens) |
Input Schema (JSON Schema)
{
"properties": {
"gene": {
"description": "Gene symbol or UniProt ID (e.g., BRCA1, P04637)",
"type": "string"
},
"species": {
"description": "Species name or taxon ID (default: Homo sapiens)",
"type": "string"
}
},
"required": [
"gene"
],
"type": "object"
}