|
1 | 1 |
|
| 2 | +[](https://travis-ci.org/matthiaskoenig/sbmlsim) |
| 3 | +[](https://sbmlsim.readthedocs.io/en/latest/) |
| 4 | +[](http://opensource.org/licenses/LGPL-3.0) |
| 5 | + |
2 | 6 | <h1>sbmlsim: SBML simulation made easy</h1> |
3 | | -<b><a href="https://orcid.org/0000-0003-1725-179X" title="https://orcid.org/0000-0003-1725-179X"><img src="./docs/images/orcid.png" height="15"/></a> Matthias König</b> |
| 7 | +<b><a href="https://orcid.org/0000-0003-1725-179X" title="https://orcid.org/0000-0003-1725-179X"><img src="./docs/static/images/orcid.png" height="15"/></a> Matthias König</b> |
4 | 8 |
|
5 | 9 | `sbmlsim`: SBML simulation made easy |
6 | 10 |
|
| 11 | +For documentation and examples see https://sbmlsim.readthedocs.io |
| 12 | + |
7 | 13 | ### License |
8 | 14 | * Source Code: [LGPLv3](http://opensource.org/licenses/LGPL-3.0) |
9 | 15 | * Documentation: [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/) |
10 | 16 |
|
11 | | -## Funding |
| 17 | +### Funding |
12 | 18 | Matthias König is supported by the Federal Ministry of Education and Research (BMBF, Germany) |
13 | 19 | within the research network Systems Medicine of the Liver (**LiSyM**, grant number 031L0054). |
14 | 20 |
|
| 21 | +## Installation |
| 22 | +`sbmlsim` currently works only python3.6. |
| 23 | + |
| 24 | +HDF5 support is required which can be installed via |
| 25 | +``` |
| 26 | +sudo apt-get install -y libhdf5-serial-dev |
| 27 | +``` |
| 28 | + |
| 29 | +Best install `sbmlsim` in a virtual environment via pip |
| 30 | +```bash |
| 31 | +# checkout code |
| 32 | +git clone https://github.com/matthiaskoenig/sbmlsim.git |
| 33 | + |
| 34 | +# virtualenv |
| 35 | +cd sbmlsim |
| 36 | +mkvirtualenv sbmlsim --python=python3.6 |
| 37 | +(sbmlsim) pip install -e . |
| 38 | +``` |
| 39 | +The notebook support can be installed via |
| 40 | +```bash |
| 41 | +(sbmlsim) pip install jupyter jupyterlab |
| 42 | +(sbmlsim) python -m ipykernel install --user --name sbmlsim |
| 43 | +``` |
| 44 | +Notebooks are available in |
| 45 | +- `docs/notebooks` (notebooks used in documentation on https://sbmlsim.readthedocs.io/en/latest/) |
| 46 | +- `notebooks` |
| 47 | + |
| 48 | +and can be started from within `jupyterlab` |
| 49 | +``` |
| 50 | +(sbmlsim) jupyter lab |
| 51 | +``` |
| 52 | + |
15 | 53 | © 2019 Matthias König |
0 commit comments