Skip to content
/ HMG Public

Heterogeneous Multiphasic Growth (HMG) based on the Cooper-Helmstetter cell cycle model for the simulation of (K-12 and TOP10) bacterial populations growth in a well-mixed environment

License

Notifications You must be signed in to change notification settings

Melclic/HMG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HMG

Heterogeneous Multiphasic Growth (HMG) model for the simulation of bacterial populations growth in a well-mixed environment

Introduction

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:

Du Lac, Melchior, et al. "Predicting the dynamics and heterogeneity of genomic DNA content within bacterial populations across variable growth regimes." ACS synthetic biology (2016).

Or to the following thesis:

Modelling and simulation of heterogeneous growth dynamics in bacterial populations using a novel multiphasic growth method

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:

Abner, Kristo, et al. "Single-cell model of prokaryotic cell cycle." Journal of theoretical biology 341 (2014): 78-87. APA

Getting Started

Prerequisites

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

Compiling

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.

Running the tests

TODO

Built With

Authors

Melchior du Lac

License

GPLv3

Acknowledgments

  • Professor Declan G. Bates
  • Associate Professor Joshua N. Leonard
  • Dr Andrew H. Scarpelli
  • Dr Andrew K. D. Younger

About

Heterogeneous Multiphasic Growth (HMG) based on the Cooper-Helmstetter cell cycle model for the simulation of (K-12 and TOP10) bacterial populations growth in a well-mixed environment

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published