| Tests | Coverage | Project status |
|---|---|---|
This is a simple package you can use to query Rhea reactions and associated annotations. Its primary use is in reconstructing metabolic models. It caches all requests by default, speeding up repeated calls where appropriate.
using RheaReactions # load module
rxn = get_reaction(11364) # Rhea reaction ID 11364
rxns = get_reactions([11364,11600]) # Rhea reaction ID 11364
get_quartet(11364) # Rhea reference reaction => bidirectional, directional and ref reaction (not ordered)
get_metabolite(60377)
get_metabolites(["456216", "60377"])You can test the package with:
] testThe cache can be source of subtle issues. If you get errors or unexpected behavior do:
clear_cache!(),- Restart the Julia session. If you still get errors, please file an issue!