https://github.com/stelmo/rheareactions.jl
Get Rhea reaction data!
https://github.com/stelmo/rheareactions.jl
Last synced: 3 months ago
JSON representation
Get Rhea reaction data!
- Host: GitHub
- URL: https://github.com/stelmo/rheareactions.jl
- Owner: stelmo
- License: mit
- Created: 2022-08-04T08:44:53.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-03-13T14:18:31.000Z (4 months ago)
- Last Synced: 2025-03-30T07:16:03.444Z (4 months ago)
- Language: Julia
- Homepage:
- Size: 72.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RheaReactions.jl
[repostatus-url]: https://www.repostatus.org/#active
[repostatus-img]: https://www.repostatus.org/badges/latest/active.svg[ci-img]: https://github.com/stelmo/RheaReactions.jl/workflows/CI/badge.svg
[ci-url]: https://github.com/stelmo/RheaReactions.jl/actions/workflows/ci.yml[cov-img]: https://codecov.io/gh/stelmo/RheaReactions.jl/branch/master/graph/badge.svg?token=R71TrrfMmS
[cov-url]: https://codecov.io/gh/stelmo/RheaReactions.jl| **Tests** | **Coverage** | **Project status** |
|:---:|:---:|:---:|
| [![CI status][ci-img]][ci-url] | [![codecov][cov-img]][cov-url] | [![repostatus-img]][repostatus-url] |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.
```julia
using RheaReactions # load modulerxn = 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:
```julia
] test
```
### Troubleshooting
The cache can be source of subtle issues. If you get errors or unexpected behavior do:
1. `clear_cache!()`,
2. Restart the Julia session.
If you still get errors, please file an issue!