Filter inference: A scalable nonlinear mixed effects inference approach for snapshot time series data
This GitHub repository serves as documentation and reproduction source for the results published in PLOS Computational Biology. It contains the raw data, the data derived during the analysis, the model specifications (SBML format) and executable scripts (Python scripts as well as Jupyter notebooks).
The results are documented by multiple notebooks. To open the notebooks, please follow the links below:
To inspect the scripts used to generate data, implement models and to estimate model parameters, please follow the links below:
Early cancer gowth datasets (no substructure):
- 90 snapshot measurements
- 270 snapshot measurements
- 810 snapshot measurements
- 2430 snapshot measurements
Early cancer growth datasets (slow and aggressive growth subpopulations):
Epidermal growth factor signalling pathway dataset
- Early cancer growth model
- EGF pathway model (SBML)
- EGF pathway model exposed to 2 constant EGF concentrations
Early cancer growth:
Epidermal growth factor signalling pathway:
Early cancer growth:
- NLME inference from 90 snapshot measurements
- Filter inference from 90, 270, 810 and 2430 snapshot measurements
- Filter inference from 2430 snapshot measurements with varying numbers of simulated individuals
- NLME inference from 240 snapshot measurements of structured population
- Filter infernece from 240 and 3000 snapshot measurements of structured population using different filters
Epidermal growth factor signalling pathway:
To reproduce the results, the GitHub repository can be cloned, and the scripts
can be executed locally. For ease of execution, we prepared a Makefile
that
runs the scripts in the correct order. Please find a step-by-step instruction
how to install the dependencies and how to reproduce the results, once the
repostory has been cloned.
- 1.1 Install CVODE (myokit uses CVODE to solve ODEs)
For Ubuntu:
apt-get update && apt-get install libsundials-dev
For MacOS:
brew update-reset && brew install sundials
For Windows: No action required. Myokit installs CVODE automatically.
- 1.2 Install Python dependencies
pip install -r requirements.txt
You can now reproduce the results by running
make all
This may take a while (hours to days), because you are re-running all scripts sequentially. To reproduce only the plots from the existing data you can run
make plot_results
You can also run each script individually, but be aware that some scripts are dependent on the data derived in other scripts.