Summer is a compartmental disease modelling framework, written in Python. It provides a high-level API to build and run models.
Project description
summer2: compartmental disease modelling in Python
summer2 is a Python-based framework for the creation and execution of compartmental (or "state-based") epidemiological models of infectious disease transmission.
It provides a range of structures for easily implementing compartmental models, including structure for some of the most common features added to basic compartmental frameworks, including:
- A variety of inter-compartmental flows (infections, transitions, births, deaths, imports)
- Force of infection multipliers (frequency, density)
- Post-processing of compartment sizes into derived outputs
- Stratification of compartments, including:
- Adjustments to flow rates based on strata
- Adjustments to infectiousness based on strata
- Heterogeneous mixing between strata
- Multiple disease strains
Some helpful links to learn more:
- Documentation with code examples
- Available on PyPi as
summerepi2
.
Installation and Quickstart
This project requires at least Python 3.8
Set up and activate an appropriate virtual environment, then install the summerepi2
package from PyPI
pip install summerepi2
Important note for Windows users: summerepi2 relies on the Jax framework for fast retargetable computing. This is automatically installed under Linux, OSX, and WSL environments. It is strongly recommended that you use WSL, but in instances were you are unable to do so, an unofficial build of jax can be installed by running the following command
pip install jax[cpu]==0.3.24 -f https://whls.blob.core.windows.net/unstable/index.html
Then you can now use the library to build and run models. See here for some code examples.
Optional (recommended) extras
Summer has advanced interactive plotting tools built in - but they are greatly improved with the addition of the pygraphviz library.
If you are using conda, the simplest method of installation is as follows:
conda install --channel conda-forge pygraphviz
For other install methods, see https://pygraphviz.github.io/documentation/stable/install.html
Development
Poetry is used for packaging and dependency management.
Initial project setup is documented here and should work for Windows or Ubuntu, maybe for MacOS.
Some common things to do as a developer working on this codebase:
# Activate summer conda environment prior to doing other stuff (see setup docs)
conda activate summer
# Install latest requirements
poetry install
# Publish to PyPI - use your PyPI credentials
poetry publish --build
# Add a new package
poetry add
# Run tests
pytest -vv
# Format Python code
black .
isort . --profile black
Releases
Releases are numbered using Semantic Versioning
- 1.0.0/1:
- Initial release
- 1.2.1
- Dropped support for Python 3.7. Variety of bugfixes and expanded features, see documentation
- 1.2.2
- Added capture utils
- Removed inner jit in model building to improve debugging
Release process
To do a release:
- Commit any code changes and push them to GitHub
- Choose a new release number accoridng to Semantic Versioning
- Add a release note above
- Edit the
version
key inpyproject.toml
to reflect the release number - Publish the package to PyPI using Poetry, you will need a PyPI login and access to the project
- Commit the release changes and push them to GitHub (Use a commit message like "Release 1.1.0")
- Update
requirements.txt
in Autumn to use the new version of Summer
poetry build
poetry publish
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file summerepi2-1.2.3.tar.gz
.
File metadata
- Download URL: summerepi2-1.2.3.tar.gz
- Upload date:
- Size: 63.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.10 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b388d1f9599df3d4aff589de92c48b997e071fedc380a1f8a0e32065a1947d6 |
|
MD5 | 9c67459620658387ba2aaae6c73df7ca |
|
BLAKE2b-256 | 9675122a5917858917e5d22826fc1d7ae981a734c7f8e68c1eb969cbc5d92e02 |
File details
Details for the file summerepi2-1.2.3-py3-none-any.whl
.
File metadata
- Download URL: summerepi2-1.2.3-py3-none-any.whl
- Upload date:
- Size: 74.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.10 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c790fc50d5d1f850723ed1df0d14327782e9fae2fde37e8ee18c744b04234b02 |
|
MD5 | 0b1710b04ab10871a045b816017acd6a |
|
BLAKE2b-256 | fc044475a997a1066780ecacfc2112d01344efbfb6473a7b70e38f60eb92cf8d |