Skip to content

Commit 11a3cb9

Browse files
Merge pull request #186 from matthiaskoenig/sbmlsim2
documentation and sensitivity
2 parents 295b408 + 0677a74 commit 11a3cb9

File tree

70 files changed

+17047
-607
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+17047
-607
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
.vscode
23
workspace.code-workspace
34
.venv
@@ -45,3 +46,6 @@ src/sbmlsim/combine/results
4546
src/sbmlsim/combine/examples/l1v4/sbmlsim/
4647

4748
src/sbmlsim/comparison/amicitesting/icg_sd/
49+
50+
/.quarto/
51+
**/*.quarto_ipynb

.nojekyll

Whitespace-only changes.

.quartoignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
tests/
2+
release_notes/
3+
build/
4+
**/__pycache__/

README.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![sbmlsim logo](https://github.com/matthiaskoenig/sbmlsim/raw/develop/docs/images/favicon/sbmlsim-100x100-300dpi.png)
1+
![](https://github.com/matthiaskoenig/sbmlsim/raw/develop/docs/images/favicon/sbmlsim-100x100-300dpi.png)
22

33

44
# sbmlsim: SBML simulation made easy
@@ -37,7 +37,7 @@ pip install git+https://github.com/matthiaskoenig/sbmlsim.git@develop
3737
```
3838

3939
## How to cite
40-
[![DOI](https://zenodo.org/badge/55952847.svg)](https://zenodo.org/badge/latestdoi/55952847)
40+
[![](https://zenodo.org/badge/55952847.svg)](https://zenodo.org/badge/latestdoi/55952847)
4141

4242

4343
## License
@@ -53,4 +53,32 @@ A Systems Medicine Approach)" by grant number 436883643 and by grant number
5353
Matthias König was supported by the Federal Ministry of Education and Research (BMBF, Germany)
5454
within the research network Systems Medicine of the Liver (LiSyM, grant number 031L0054).
5555

56+
## Development
57+
### Install dev dependencies:
58+
To setup everything for the develop environment use
59+
```bash
60+
# install core dependencies
61+
uv sync
62+
# install dev dependencies
63+
uv pip install -r pyproject.toml --extra dev
64+
uv tool install tox --with tox-uv
65+
uv pip install pre-commit
66+
pre-commit install
67+
pre-commit run
68+
```
69+
70+
### Testing
71+
Testing is performed with tox
72+
Run single tox target
73+
```bash
74+
tox r -e py314
75+
```
76+
Run all tests in parallel
77+
```bash
78+
tox run-parallel
79+
```
80+
81+
## Documentation
82+
If you haven’t already, you’ll need to [install Quarto](https://quarto.org/docs/get-started/).
83+
5684
© 2019-2026 Matthias König

RELEASE.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

_site/api/_styles-quartodoc.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
This file generated automatically by quartodoc version 0.11.1.
3+
Modifications may be overwritten by quartodoc build. If you want to
4+
customize styles, create a new .css file to avoid losing changes.
5+
*/
6+
7+
8+
/* styles for parameter tables, etc.. ----
9+
*/
10+
11+
.doc-section dt code {
12+
background: none;
13+
}
14+
15+
.doc-section dt {
16+
/* background-color: lightyellow; */
17+
display: block;
18+
}
19+
20+
.doc-section dl dd {
21+
margin-left: 3rem;
22+
}

0 commit comments

Comments
 (0)