Homework 8.1: Analysis of cis-inhibition in the Delta-Notch system (70 pts)


[1]:
import collections
import numpy as np

In this problem, we will perform some of the analysis of the Delta-Notch system, including cis-interactions, using a model developed in Sprinzak, et al., 2010.

The dynamics of Delta (\(D\)), Notch (\(N\)), Nicd (\(S\)), and the fluorescent reporter (\(R\)) in a given cell are given by the following differential equations.

\begin{align} &\frac{\mathrm{d}N}{\mathrm{d}t} = \beta_N - \gamma_N N - k_t N D_\mathrm{trans} - k_c N D \\[1em] &\frac{\mathrm{d}D}{\mathrm{d}t} = \beta_D - \gamma_D D - k_t N_\mathrm{trans} D - k_c N D \\[1em] &\frac{\mathrm{d}S}{\mathrm{d}t} = k_t N D_\mathrm{trans} - \gamma_S S \\[1em] &\frac{\mathrm{d}R}{\mathrm{d}t} = \beta_R\left(\frac{k_\mathrm{RS}\,k_t ND_\mathrm{trans}}{\gamma_S}\right)^p - \gamma_R R. \end{align}

In these equations, the subscript “trans” is used to denote the total amount of Delta or Notch in contact with the cell of interest, either from neighboring cells or from the plate on which they sit. We have also made approximations about fast dynamics of cleavage of the Notch-Delta complex and subsequent expression of reporter such that the equation for \(R\) is decoupled from that of \(S\).

a) In one of the experiments in the Sprinzak paper, the authors placed cells on a plate with a set concentration \(D_\mathrm{trans} = D_\mathrm{plate}\) in the absence of doxycycline. In this case, \(N_\mathrm{trans} = 0\) and \(\beta_D = 0\). Because we are looking at reporter dynamics, we do not need to consider the ODE for \(S\).

We will use the following parameter values.

Parameter

Value

Units

\(\gamma_N\)

0.08

hours⁻¹

\(\gamma_D\)

0.08

hours⁻¹

\(\gamma_R\)

0.01

hours⁻¹

\(\gamma_S\)

0.1

hours⁻¹

\(k_t\)

0.5

(plate concentration units · hours)⁻¹

\(k_c\)

5

(relative fluorescent units · hours)⁻¹

\(k_{RS}\)

6.67×10⁻⁴

(relative fluorescent units · hours)⁻¹

\(\beta_N\)

1

relative fluorescent units/hour

\(\beta_R\)

1.25×10⁸

relative fluorescent units/hour

\(p\)

2

dimensionless

Note that we have set \(\gamma_N = \gamma_D\), and we will assume this to be the case for this entire problem. Compute the reporter concentration over time for values of \(D_\mathrm{plate}\) ranging at least from 0.063 to 1.4 µg/mL, but you may use other values of \(D_\mathrm{plate}\) if you like. (In the Sprinzak, et al. paper, they used \(D_\mathrm{plate} =\) {0.063, 0.084, 0.11, 0.15, 0.20, 0.26, 0.35, 0.46, 0.62, 0.82, 1.1, 1.4}.) Start from an initial condition of \(R(0) = 0\), \(D(0) \equiv D_0 = 200\), and

\begin{align} N(0) = \frac{\beta_N}{\gamma_N + k_c D_0 + k_t D_\mathrm{plate}}. \end{align}

For convenience, the parameters are given in the code cell below.

[2]:
Params = collections.namedtuple(
    "Params",
    [
        "gamma_N",
        "gamma_D",
        "gamma_R",
        "gamma_S",
        "k_t",
        "k_c",
        "k_RS",
        "beta_N",
        "beta_R",
        "p",
    ],
)

params = Params(
    gamma_N=0.08,
    gamma_D=0.08,
    gamma_R=0.01,
    gamma_S=0.1,
    k_t=0.5,
    k_c=5,
    k_RS=1 / 1500,
    beta_N=1,
    beta_R=1.25e8,
    p=2,
)

D_plate = np.array(
    [0.063, 0.084, 0.11, 0.15, 0.20, 0.26, 0.35, 0.46, 0.62, 0.82, 1.1, 1.4]
)

Comment on what the plots tell you about the timing and sharpness of turning on gene expression in response to a trans Delta signal.

b) Now consider two cells in contact with each other. They have the same Notch production rate, \(\beta_N\), but they have different Delta production rates, \(\beta_D^{(1)}\) and \(\beta_D^{(2)}\). Our goal is to investigate the amplification in the level of signaling due to differing rates of Delta production. In other words, we want to compare the relative difference in levels of Nicd to the relative difference in the \(\beta_D\)’s. The amplification is thus defined as

\begin{align} \text{amplification} = \frac{(S_2 - S_1) / S_1}{(\beta_D^{(1)} - \beta_D^{(2)}) / \beta_D^{(1)}} = \frac{1-S_1/S_2}{1 - \beta_D^{(2)}/\beta_D^{(1)}}. \end{align}

  • Nondimensionalize the equations for the Delta and Notch dynamics to give \begin{align} &\frac{\mathrm{d}n_1}{\mathrm{d}t} = \beta_n - n_1 - \kappa d_1 n_1 - d_2 n_1 \\[1em] &\frac{\mathrm{d}n_2}{\mathrm{d}t} = \beta_n - n_2 - \kappa d_2 n_2 - d_1 n_2 \\[1em] &\frac{\mathrm{d}d_1}{\mathrm{d}t} = \beta^{(1)}_d - d_1 - \kappa d_1 n_1 - d_1 n_2 \\[1em] &\frac{\mathrm{d}d_2}{\mathrm{d}t} = \beta^{(2)}_d - d_2 - \kappa d_2 n_2 - d_2 n_1. \end{align} Be sure to identify how the dimensionless parameter and variables are defined.

  • Show that a homogeneous steady state \(n_1 = n_2 \equiv n_0\) and \(d_1 = d_2 \equiv d_0\) only exists when \(\beta_d^{(1)} = \beta_d^{(2)}\). Why is this fact pertinent when considering the states of these neighboring cells?

  • Show that the amplification is

\begin{align} \text{amplification} = \frac{1-d_2n_1/d_1n_2}{1 - \beta_d^{(2)}/\beta_d^{(1)}}. \end{align}

  • The above dimensionless equations for the Delta-Notch dynamics have a unique steady state. Why is it important to know this fact? (If you are so inclined, you can you can prove the uniqueness of the steady state; it takes some effort.)

  • Show that the steady state is linearly stable. Why is this an important fact? Hint: Use the following facts about matrices.

    1. A square matrix \(\mathsf{A}\) has the same eigenvalues as its transpose, \(\mathsf{A}^\mathsf{T}\).

    2. The Gerschgorin Circle Theorem states that for an \(n\times n\) matrix \(\mathsf{A}\) with entries \(a_{ij}\), every (potentially complex) eigenvalue \(\lambda\) satisfies

      \[|\lambda - a_{ii}| \le \sum_{j\ne i}|a_{ij}|\]

      for at least one \(i\). This gives the regions in the complex plane where the eigenvalues may lie.

    3. A square matrix is strictly diagonally dominant if the magnitude of the entry on the diagonal is greater than the sum of the magnitudes of the off-diagonal entries for each row. It follows from the Gerschgorin Circle Theorem that all of the eigenvalues of a real strictly diagonally dominant matrix with positive entries on the diagonal have positive real parts.

  • Plot the amplification at steady state versus \(\bar{\beta}_d \equiv \left.\left(\beta_d^{(1)}+ \beta_d^{(2)}\right) \middle/ 2\right.\) for varying values of \(\kappa\). For this plot, take \(\beta_d^{(2)} / \beta_d^{(1)} = 1.35\) and \(\beta_n = 200\). Comment on what you see in the plot.

c) In an effort to keep the length of this homework problem from growing too large, this part of this problem is optional. I think it is an interesting problem to think about, though, so if you are interested in getting a more thorough understanding of the Delta-Notch system, I recommend doing it.

In many systems, the Nicd can serve to repress expression of Delta. If this is the case, we could model the repression with a Hill function, and our dimensionless dynamical system is

\begin{align} &\frac{\mathrm{d}n_1}{\mathrm{d}t} = \beta_n - n_1 - \kappa d_1 n_1 - d_2 n_1 \\[1em] &\frac{\mathrm{d}n_2}{\mathrm{d}t} = \beta_n - n_2 - \kappa d_2 n_2 - d_1 n_2 \\[1em] &\frac{\mathrm{d}d_1}{\mathrm{d}t} = \frac{\beta_d}{1 + s_1^\alpha} - d_1 - \kappa d_1 n_1 - d_1 n_2 \\[1em] &\frac{\mathrm{d}d_2}{\mathrm{d}t} = \frac{\beta_d}{1 + s_2^\alpha} - d_2 - \kappa d_2 n_2 - d_2 n_1 \\[1em] &\frac{\mathrm{d}s_1}{\mathrm{d}t} = \kappa_s d_2 n_1 - \gamma s_1\\[1em] &\frac{\mathrm{d}s_2}{\mathrm{d}t} = \kappa_s d_1 n_2 - \gamma s_2. \end{align}

Note that we have not imposed that \(\beta_d\) be different in the two cells. It can be shown that a unique homogeneous steady state (\(n_1 = n_2 \equiv n_0\) and \(d_1 = d_2 \equiv d_0\)) exists. Use your intuition to devise a set of parameter values for which the homogeneous steady state is not stable, and demonstrate that it is not by solving the dynamical equations starting from the steady state.