CPM Cell Sensing

Cell Sensing, Implementation in CPM Code

Overview

Cells in a group communicate with one another in order to sense a gradient. We use a minimal adaptive model based on local excitation and global inhibition (LEGI). The network looks like the following

SS+X        XRSS+Y        Y  R

S is the signaling molecule representing the EGF gradient, X is the local reporter, Y is the global reporter, and R is the downstream readout.

Reactions for a specific cell

skκsk+xk       xkμskκsk+yk       ykμ
ykγk,<k>γ<k>,ky<k>
Rk=xkyk

sk is the local number of signaling molecules near cell k, xk is the number of local reporter molecules in cell k and yk is the number of global reporter molecules. As well as being produced by the signaling molecule, yk can also be exchanged between its neighbors. <k> represents the set of all cells neighboring cell k. The rate γ at which cells exchange y depends on the size of the cell-cell contact.

Rk is the difference between the local and global reporters. A positive value of Rk reinforces cell k’s polarity vector in the direction of motion whereas a negative Rk does the opposite.

Chemical Concentration and Signal

There is a space dependent chemical concentration field. The chemical concentration has a constant gradient.

E(x,y)=gx+g0[E]=molecules/area

The average signal from the chemical concentration that cell k feels is given as ˉsk. Diffusion is Poissonian so the variance in the measured signal sk is equal to the average ˉsk.

ˉsk=kdA E(x,y)σ2sk=ˉsk

In the code this will be implemented by sampling values of sk from a Gaussian distribution with the variance equal to the mean. Found a function that does this here (in module ran_mod).

gauss_sample_1

Implementation of Gaussian sampler works, above is an example of a 1000 numbers sampled from a distribution with a mean and variance of 9. The function is defined as normal(mean,sigma) in the module sensing.

We can place one cell in a chemical concentration with a linear gradient and see if sampling its measured signal yields a normal distribution of values.

signalconcentration_1

The distribution is not quite Gaussian anymore because values less than zero are not allowed. If the function getCellSignal( meanSignal) outputs a negative number then the signal value is set to zero. If this constraint is lifted, a Gaussian distribution is recovered.

Local Species

The local species xk is the local reporter of the chemical signal that cell k measures. The dynamics of the local reporter satisfy the stochastic equation

˙xk=κskμxk+ηxkηxk=κˉskξ2μˉxkξ3

ξi are unit Gaussian variables that make-up the noise ηxk in the local reporter. In steady-state we can solve for xk and ˉxk.

ˉxk=κμˉskxk=κμsk+1μηxk

Similar to the chemical concentration signal we can sample xk from a distribution. This is implemented in the function getLocalX( meanSignal, signal). This function takes a sampled signal value sk and then samples values for ξi in order to calculate xk.

signalconcentration_2

Here is an example of the distribution in values of xk given some distribution of sk. Again, xk is restricted to be non-negative values only.

Global Species

The global species y is the global reporter of the chemical concentration across all cells in the group. The number of the global species in cell k is given as yk. The dynamics of the global species is more complicated than the local one since it can diffuse to and from different cells.

˙yk=κskμykyk<j,k>γj,k+<j,k>yj γj,k+ηyk

The first two terms are the production and degradation rates of yk, same as in the case for xk. The first summation term accounts for the loss of yk due to the movement of the global reporter into neighboring cells. The notation <j,k> represents all nearest neighbor pairs. Similarly, the second summation term accounts for the gain in global reporter moving into cell k from neighboring cells.

The movement of y in and out cells depends on the size of the boundary overlap between nearest neighbors and so $γ<j,k> must account for that. We choose that the magnitude of γ<j,k> be proportional to the size of the boundary overlap.

γ<j,k>=GL<j,k>L<j,k>Length of boundary overlap

Note that γj,k has a few interesting properties.

γj,k=γk,j       γj,j=0

It is also useful to know the sum of all the contributing exchanges between cell k and all the other cells and define that to be Γk.

Γk=Nj=1γj,k
˙yk=κskμykΓkyk+Nj=1yj γj,k+ηyk

The steady-state solution can be written in terms of vectors.

κs+ηy=M y

M is a square, symmetric matrix governing degradation and exchange of the global reporter in all cells.

M=[μ+Γ1γ1,2γ1,Nγ2,1μ+Γ2γ2,NγN,1γN,2μ+ΓN]
ηyk=κˉskξ4muˉykξ5Nj=1ˉykγj,k χj,k+Nj=1ˉyjγj,k χj,kηyk=κˉskξ4muˉykξ5+Nj=1[χj,kγj,k(ˉyjˉyk)]

As in the local species case, ξi and χj,k are unit Gaussian variables that contribute to the noise in the global reporter. In order to compute ηyk we need to know the average number ˉy in every cell.

κˉs=M ˉyˉy=κ M1 ˉs

Using this we can then solve for the actual measured value of the global reporter in each cell y.

y=M1(κs+ηy)

Implementation

All possible values of γj,k are stored in an array gNN, such that gNN(j,k) corresponds to γj,k. Below is a list of subroutines/functions that implement the above dynamics.

  • Subroutine makeMtrxGamma( gNN, N, rSim, sigma, x) calculates all γj,k values.
  • Subroutine makeMtrxM( gNN, M, N) calculates the values of all matrix elements Mj,k.
  • Subroutine getMeanY( meanSignal, M, meanY, N) calculates the vector ˉy.
  • Subroutine getEtaY( etaY, gNN, meanSignal, meanY, N) calculates the vector ηy.
  • Subroutine getSpeciesY( etaY, M, N, signal, y) calculates the population of y in each cell.

signal_x_y_1

Here is an example of the distribution in values of xk and yk given some distribution of sk in a simulation involving only one cell. The chemical concentration profile has the same gradient as in the previous examples, but the off-set has been increased.

Downstream Readout

Once the values of xk and yk are calculated for all cells involved we can measure the downstream output Rk.

R=xy

Below is the result over many instances (1000) of a simulation involving a chain of 10 cells sitting parallel to the chemical gradient. Each data point represents the mean value of R at each cell, and the errors bars represent ± one standard deviation.

chem_R_cell_1 chem_R_cell_2

The figure on the left is representative of simulations with a relatively large gradient whereas the figure on the right is of simulations with a shallow gradient. As you can see the larger the gradient the less noisy the output becomes.

Polarization and Bias

The cell sensing and signaling network will influence the polarization of the individual cells which will in turn affect the bias term in the CPM simulations.

Polarization

It is the downstream output Rk which will contribute to the change in the cell’s polarization vector. The change in the polarization vector of cell k at every Monte Carlo time step is given as

Δpk=rpk+ϵRkR0ΔxkR0gNA30

R0 is the expected signaling molecule difference across the whole cluster of cells. The purpose in dividing by R0 is to attempt to normalize Rk so that ϵ may be used as a tuning parameter on the order of 1 in order to vary the strength of cell-cell communication.

Bias

The bias is modified in order to eliminate the need for the parameter P. With the above expression for Δpk the term

w=k=σ(a),σ(b)Δxk(ab)pk|Δxk(ab)||Δxk(Δt)|

Issues with this Model of Polarization & Bias

This model produces unrealistic results. Although cells properly sense their environment, this does not translate into relatively quick, coherent motion in the direction of increasing signal concentration as desired. Even in the case of a steep gradient, cells do not behave as expected.

In this video each of the 6 cells is colored to indicate their Rk value. Hot colors represent large, positive values whereas cool color represent smaller/negative values. The chemical gradient increases linearly from left to right.

As you can see cell movement does not look coordinated and the polarization vectors change erratically. Cells are properly measuring and communicating the signal as indicated by the right-side of the group generally having the largest values for the downstream readout. This means that the problem in the model lies in translating the various values of Rk to the dynamics of each cell which is done through the polarization and the bias.

I believe that the problem is most likely caused by the calculation of the change in polarization. Say that a cell at the very right edge of the group has both pk and Δxk pointing perpendicular to the gradient then its positive readout Rk would only reinforce movement perpendicular to the gradient. Other problems also occur when a cell becomes disconnected form the group.

Updated Polarization Implementation

These problems stem from the fact that the influence of sensing on polarization occurs through scaling Δxk. Whereas it should depend on where the cell is located in the group. I propose that changes in polarization obey the following equation

Δpk=rpk+Δxk+ϵRkR0qk .
R0g (Ng1)A30NgNumber of cells parallel to the gradient

The vector qk points away from all cell k’s neighbors.

qk=<j,k>L<j,k>xkxj|xkxj|

Using this implementation of updating the polarization vector yeilds results which are much more in-line with expectations.

Here are two preliminary simulation videos.

Qualitatively, the behavior is good but parameters need fine-tuning in order to get cells of desired sizes/shapes. The chemical gradient increases linearly from left to right, and there is about a +100 increase in the chemical concentration initially, between the cells.

Julien Varennes

Written with StackEdit.

Written on July 10, 2015