discco

Quantification of membrane and cytoplasmic concentrations based on differentiable simulation of cell cortex images


Keywords
image-analysis, jax, machine-learning, python
License
Other
Install
pip install discco==0.1.0

Documentation

DISCCo: Differentiable Image Simulation of the Cell Cortex

CC BY 4.0 Black pre-commit PyPi version

Quantification of membrane and cytoplasmic concentrations based on differentiable simulation of cell cortex images. Designed for use on images of PAR proteins in C. elegans zygotes.

This extends on the segmentation and straightening algorithm described here, and uses straightened cortices obtained by that method as input.

Installation

pip install discco

Methods

Our method is adapted from previous methods that model intensity profiles perpendicular to the membrane as the sum of distinct cytoplasmic and membrane signal components (Gross et al., 2018; Reich et al., 2019). Typically these two components are modelled as an error-function and Gaussian function respectively, representing the expected shape of a step and a point convolved by a Gaussian point spread function (PSF) in one dimension. Using this model, one can generate simulated images of straightened cortices as the sum of two tensor products which represent distinct membrane and cytoplasmic signal contributions (Figure 1):

sim = ccyt ⊗ scyt + cmem ⊗ smem

where ccyt and cmem are cytoplasmic and membrane concentration profiles and scyt and smem are, by default, error-function and Gaussian profiles. We impose the constraint that the cytoplasmic concentration ccyt is uniform throughout each image.

Figure 1: Schematic of differentiable model for image quantification


Using a differentiable programming paradigm, the input parameters to the model can be iteratively adjusted by backpropagation to minimize the mean squared error between simulated images and ground truth images. As well as allowing the image-specific concentration parameters (ccyt and cmem) to be learnt, this procedure also allows the global signal profiles scyt and smem to be optimised and take any arbitrary form, allowing the model to generalise beyond a simple Gaussian PSF model and account for complex sample-specific light-scattering behaviors. In practice we find that this additional flexibility is necessary to minimise model bias and prevent underfitting:


Figure 2: Example of ground truth and simulated images. Naive model refers to a mechanistic optical model with a Guassian PSF. Gaussian noise has been added to simulated images to allow for closer visual comparison to the ground truth image.


An additional step, described in the paper, puts the cytoplasmic and membrane concentrations outputted by the model into biologically meaningful units, which has great utility for mathematical models.

For full details of the model and training procedures, see the paper:

Optimized dimerization of the PAR-2 RING domain drives cooperative and selective membrane recruitment for robust feedback-driven cell polarization (preprint)

And the accompanying GitHub repository.

Limitations:

  • Relies on a few assumptions about the system (uniform cytoplasmic concentration, rotational symmetry)
  • Requires several calibrations with a few different samples

License

This work is licensed under a Creative Commons Attribution 4.0 International License.

CC BY 4.0