main@43a3ab7 [uncommitted changes] ·
eranagmon@LT-0919936 ·
Darwin 24.2.0 arm64 (16 cores) ·
Python 3.12.9
This simulation places a whole-cell E. coli model — with 55 biological processes including metabolism, transcription, translation, DNA replication, and chromosome segregation — inside a 2D colony alongside simpler surrogate cells.
Each whole-cell E. coli is implemented as an EcoliWCM process — a
process-bigraph Process that holds an internal Composite connected
via a bridge. The bridge maps external colony ports (mass, length, volume) to internal
whole-cell stores. The whole-cell model (v2ecoli) runs the full mechanistic simulation of
intracellular biology, while the colony framework (pymunk-process) handles spatial physics:
cell body collisions, growth-driven elongation, and division mechanics.
The green cell is the whole-cell E. coli — its length and mass are driven by the internal biological simulation. The grey cells are surrogate cells using a simple adder growth model. When the whole-cell model reaches its division threshold (~702 fg dry mass, ~42 min), the bridge removes the mother cell and adds two daughter cells, each with a fresh copy of the whole-cell model. Daughters are shown with color-shifted variants of the mother’s green.
The circular chromosome of each whole-cell E. coli, synchronized with the colony animation above. Chromosome replication initiates around ~23 min, producing 2 chromosomes visible as separate circles. Each frame shows the current number of chromosomes, replication forks, and active RNA polymerases.
| Parameter | Value |
|---|---|
| Duration | 60 min (3600s) |
| Whole-cell E. coli | 1 cell (EcoliWCM bridge, 55 steps) |
| Surrogate cells | 9 (AdderGrowDivide) |
| Environment | 40 × 40 µm |
| Physics interval | 10s |
| WCM update interval | 60s |
| Metric | Value |
|---|---|
| Build time | 0.1s |
| Wall time | 391s (6.5 min) |
| Speed | 9.2× realtime |
| Initial cells | 10 |
| Final cells | 20 |
| Emitter frames | 390 |
| Field | Value |
|---|---|
| Date | 2026-04-12 13:07:31 |
| Git commit | 43a3ab7 (main) |
| Python | 3.12.9 |
| Platform | Darwin arm64 |
| process-bigraph | dev |
| bigraph-schema | dev |
| Seed | 0 |
| Command | python3 colony_report.py --duration 60 --n-adder 9 --env-size 40 |