sbmlutils is a collection of python utilities for working with SBML models implemented on top of libsbml and other libraries with source code available from https://github.com/matthiaskoenig/sbmlutils.
Features include among others
- helper functions for model creation, manipulation, and annotation
- HTML reports of SBML models
- interpolation functions to add experimental data to models
- file converters (XPP)
The documentation is available on https://sbmlutils.readthedocs.io. If you have any questions or issues please open an issue.
Contributions are always welcome! Please read the contributing guidelines to get started.
- Source Code: LGPLv3
- Documentation: CC BY-SA 4.0
The sbmlutils source is released under both the GPL and LGPL licenses version 2 or later. You may choose which license you choose to use the software under.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License or the GNU Lesser General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Matthias König is supported by the Federal Ministry of Education and Research (BMBF, Germany) within the research network Systems Medicine of the Liver (LiSyM, grant number 031L0054).
sbmlutils is available from pypi and can be installed via:
pip install sbmlutils
tkinter is required which can be installed on linux via:
apt-get install python-tk apt-get install python3-tk
Please see the respective installation instructions for your operating system.
The latest develop version can be installed via:
pip install git+https://github.com/matthiaskoenig/sbmlutils.git@develop
Or via cloning the repository and installing via:
git clone https://github.com/matthiaskoenig/sbmlutils.git cd sbmlutils pip install -e .
To install for development use:
pip install -e .[development]
© 2017-2021 Matthias König