Heterogeneous Multiphasic Growth (HMG) model for the simulation of bacterial populations growth in a well-mixed environment
This project was part of a bioengenerring thesis on the exploration of different growth stategies for the accurate simulation of bacterial population in a wider range of growth conditions that the classic Cooper-Helmstetter cell cycle model of growth allows for. The core model is written in ANSI C as libHMG. It contains a mechanistic description of the cell cycle with, among others, the critical mass, eclipse period and others.... as described by the CH model.
For a more detailed explanation of the particularities of this agent based (or individual based) bacterial model please refer to the following open access paper:
Or to the following thesis:
Although the paper and thesis have very particular research purposes, the core model may be used for other purposes, since it mainly follows the classic CH model as described in:
To compile libHMG the following packages are required:
- GSL - To run ODE models in parralell to the cell cycle mechanistic model
- DEAP - Distributed Evolutionary Algorithms in Python
- Numpy - Python scientific packages
- Scipy - Python scientific packages
- Sobol seq - Sobol sequence generator in python
To compile the libHMG model alone with the example in the main() function in model.c, the following command must be used (assuming that you are compiling the model under a UNIX environment):
cd libHMG
gcc -o test model.c cellPopulation.c cell.c utility.c inputModel.c -lm -lgsl -lgslcblas
where -lgsl and -lgslcblas are flags for the GSL package and -lm is the flag for the math C packages
To compile libHMG to be ran with the python wrapper functions, it must be compiled as follows:
cd libHMG
gcc -shared -o abm.so -fPIC pyConnect.c model.c cellPopulation.c cell.c utility.c inputModel.c -lm -lgsl -lgslcblas
For a more complete description of libHMG please refer to the doc in the libHMG folder.
TODO
- polynomial - From the pyWafo project
Melchior du Lac
GPLv3
- Professor Declan G. Bates
- Associate Professor Joshua N. Leonard
- Dr Andrew H. Scarpelli
- Dr Andrew K. D. Younger