Rhea Reaction Tools#
Configuration File: rhea_reaction_tools.json
Tool Type: Local
Tools Count: 2
This page contains all tools defined in the rhea_reaction_tools.json configuration file.
Available Tools#
Rhea_get_reaction (Type: RheaReactionTool)#
Fetch the full structured detail of a single Rhea biochemical reaction by its Rhea identifier. Rh…
Rhea_get_reaction tool specification
Tool Information:
Name:
Rhea_get_reactionType:
RheaReactionToolDescription: Fetch the full structured detail of a single Rhea biochemical reaction by its Rhea identifier. Rhea (SIB Swiss Institute of Bioinformatics) is an expert-curated knowledgebase of chemical and transport reactions, all linked to ChEBI compounds and EC numbers. Given a Rhea id (e.g. ‘10280’ or ‘RHEA:10280’), returns the chemical equation; reactants and products with identifiers, stoichiometric coefficients, and transport compartments; EC enzyme numbers; the count of curated enzymes; PubMed references; KEGG and MetaCyc cross-references; and curation, balance, and transport flags. Use this to retrieve mechanistic detail for one reaction after finding it with Rhea_search_reactions / Rhea_search_by_ec / Rhea_search_by_chebi. No API key required.
Parameters:
rhea_id(string) (required) Rhea reaction identifier, numeric or RHEA-prefixed. Examples: ‘10280’ (caffeine synthase), ‘RHEA:13065’ (ATP hydrolysis), ‘29467’ (K+/H+ antiport transport reaction).
Example Usage:
query = {
"name": "Rhea_get_reaction",
"arguments": {
"rhea_id": "example_value"
}
}
result = tu.run(query)
Rhea_get_reaction_participants (Type: RheaReactionTool)#
Return the structured reactants and products of one Rhea biochemical reaction, including each par…
Rhea_get_reaction_participants tool specification
Tool Information:
Name:
Rhea_get_reaction_participantsType:
RheaReactionToolDescription: Return the structured reactants and products of one Rhea biochemical reaction, including each participant’s identifier, name, stoichiometric coefficient, and transport compartment. This is a lightweight alternative to Rhea_get_reaction when building or annotating a metabolic network. No API key required.
Parameters:
rhea_id(string) (required) Rhea reaction identifier, numeric or RHEA-prefixed. Examples: ‘16505’ (chorismate -> 4-hydroxybenzoate + pyruvate), ‘RHEA:10280’.
Example Usage:
query = {
"name": "Rhea_get_reaction_participants",
"arguments": {
"rhea_id": "example_value"
}
}
result = tu.run(query)