bc_get_reactome_info_by_identifier
Retrieve Reactome pathways associated with a specific identifier by querying the Reactome API. Filter results by species, p-value, and entity count to analyze biological pathways efficiently.
Instructions
Query the Reactome API identifier endpoint.
Use this endpoint to retrieve pathways associated with a given identifier. Always provide the species parameter to ensure the correct protein is returned.
Args: identifier (str): The identifier of the element to be retrieved base_url (str): Base URL for the Reactome API interactors (bool): Include interactors species (str or list): List of species to filter the result (accepts taxonomy ids, species names and dbId) page_size (int): Pathways per page page (int): Page number sort_by (str): Field to sort results by (e.g., "ENTITIES_PVALUE", "ENTITIES_FDR") order (str): Sort order ("ASC" or "DESC") resource (str): Resource to filter by (TOTAL includes all molecule types) p_value (float): P-value threshold (only pathways with p-value <= threshold will be returned) include_disease (bool): Set to False to exclude disease pathways min_entities (int): Minimum number of contained entities per pathway max_entities (int): Maximum number of contained entities per pathway importable_only (bool): Filter to only include importable resources timeout (int): Request timeout in seconds
Returns: dict: API response data or error information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_url | No | Base URL for the Reactome API | https://reactome.org/AnalysisService |
identifier | Yes | The identifier of the element to be retrieved | |
importable_only | No | Filter to only include importable resources | |
include_disease | No | Set to False to exclude disease pathways | |
interactors | No | Include interactors | |
max_entities | No | Maximum number of contained entities per pathway | |
min_entities | No | Minimum number of contained entities per pathway | |
order | No | Sort order ('ASC' or 'DESC') | ASC |
p_value | No | P-value threshold (only pathways with p-value <= threshold will be returned) | |
page | No | Page number | |
page_size | No | Pathways per page | |
resource | No | Resource to filter by (TOTAL includes all molecule types) | TOTAL |
sort_by | No | Field to sort results by (e.g., 'ENTITIES_PVALUE', 'ENTITIES_FDR') | ENTITIES_PVALUE |
species | No | List of species to filter the result (accepts taxonomy ids, species names and dbId) | |
timeout | No | Request timeout in seconds |