# SBML.jl
| Build status | Documentation |
|:---:|:---:|
|  | [](https://lcsb-biocore.github.io/SBML.jl/stable) |
This is a simple wrap of some of the libSBML functionality, mainly the model loading for purposes of COBRA analysis methods.
Other functionality will be added as needed. Feel free to submit a PR that increases the loading "coverage".
#### Acknowledgements
`SBML.jl` was developed at the Luxembourg Centre for Systems Biomedicine of the
University of Luxembourg ([uni.lu/lcsb](https://www.uni.lu/lcsb)). The
development was supported by European Union's Horizon 2020 Programme under
PerMedCoE project ([permedcoe.eu](https://www.permedcoe.eu/)) agreement no.
951773.
## Usage
```julia
using SBML
m = readSBML("myModel.xml")
# m is now a Model structure with:
m.reactions
m.species
m.compartments
...
```
There are several helper functions, for example you can get a nice list of reactions, metabolites and the stoichiometric matrix as follows:
```julia
mets, rxns, S = getS(m)
```