Team:Waterloo/Modeling/Intercellular Spread

Viral Spread Model

Viral spread has been modeled extensively on very small scales and on large (population) scales, but, surprisingly, the middle ground of intercellular spread is relatively unexplored . First, we had to make a model on this scale. Then, we used this model to investigate whether our defense system would protect individual Arabidopsis plants.

This is an agent-based approach. Briefly, each plant cell is treated an agent that may become infected by CaMV or resistant to infection due to plant defense signalling. Infected cells run an instance of our ODE model for viral replication; they may also pass infection to their neighbors. The spread through the stems and leaves of the plant can be tracked with and without the CRISPR/Cas9 system.

Stylized plant leaves
Plant Leaves

This leads to our second goal which is to integrate the intracellular replication and intercellular spread models to fully understand impact of CRISPR/Cas9. Altogether, we are attempting to demonstrate the feasibility of our anti-viral system and use our findings to direct the project design.

As a reaction to the presence of the virus, the plant cells will destroy infected cells through apoptosis as well as signal to the rest of the plant to begin production of defensive chemicals in preparation for attack. This signaling causes systemic required resistance, a broad, long-term increased resistant to future infections..

  • Explain and link this to the parameters in the model once the parameters are finalized
  • Explain reasons for the parameters

Model Formation

Biology of Viral Infection Spread

For information on this, please see the Intercellular Spread section of the CaMV biology page here.

Agent-Based Model Design

To trace the spread of the virus through the leaf, we used an agent-based model. Each cell produces and spreads the virus

  • Explain reasons for the parameters

Plant Structure

  • Cells are groups into leaves. Cells are only connected by plasmodesmata to other cells in the same leaf.
  • Each leaf also has one phloem (stem) that links to the central vasculature of the plant. These phloem cannot produce either viral particles or resistance molecules themselves; they only act as conduits to pass them along.

Model Assumptions

  • Viral Spread Chance - each time step, infected cells have a small probability of passing a virion to a neighboring cell. It is unbiological to have each cell's infection spread at every timestep, as this leads rapidly to 100% infection, contrary to observations . Unfortunately, no number for this infection probability could be found in literature, so a reasonable approximation of this value was implemented in order to emulate normal viral spread.
  • Cas9 is already at a steady state at time of infection

Plant Structure

  • Plasmodesmata
  • Phloems and Vascular System

Virus

  • Initial Infection Sites is a user-selected integer representing the number of lesions on a plant leaf for the application of the virus
  • Founder Population represents the number of viruses in each of the lesions, or the multiplicity of infection, which should be between 2 and 13
  • Viral Spread Rates the virus spreads at a rate of about 3 cells per day, but it takes longer for the cell to begin actively producing and exporting virions
  • Viral Spread Chance
  • Viral Assembly
  • Modify Virus "On" runs the simulation with Cas9, "Off" is without

Plant Response

  • SAR or Systemic Acquired Response, is a form of acquired immunity. The plant produces signalling molecules and enables cells to become resistant or lyse themselves
  • Resistance Threshold is the level of SA signalling molecule required for a cell to become resistant to the pathogen
  • Lysis Threshold is the level of SA signalling molecule required for a cell to undergo apoptosis to protect the rest of the organism
  • Signalling Molecule is generated by resistant or susceptible cells neighbouring infected or resistant cells at a rate of one per minute, after those neighbours have been infected/resistant for 8hrs. The model has been simplified to have both HR and SAR spread through the plant using one signalling chemical instead of the complex interactions between several different signalling molecules separately .

Agent-Based Modelling Software

We identified several requirements for the software used in our agent-based model:

  • Ability to create different kinds of agents (cells, vasculature, and others).
  • Control over connections between agents (e.g. plasmodesmata betweeen cells)
  • Support for complex rules (e.g. ODE simulations) within each agent
  • Arbitrary number of model states
  • Tracking of time since infection
  • Ease of use
NetLogo, the chosen agent-based modelling software

Three different software packages (MASON, MESA and Netlogo) were considered in depth. MESA is a Python-based simulation package and was not used due to its poor documentation and the level of familiarity with Python required to create the model. MASON, a Java-based simulation package, has excellent, easily-found documentation but no GUI and fewer built-in functions. Although fewer built-in functions could be an advantage (adding more flexibility and customization to the simulation), time constraints and unfamiliarity with Java pushed us to use NetLogo instead of MASON. NetLogo was easy to learn, well-documented and had a built in GUI. These were essential for rapid prototyping -- while some other choices would have been better able to handle large simulations, they would have had much longer development time for small changes, ultimately impeding our efforts to make a quality model.

Results

Normal -- no intervention

Video of spread in plant without CRISPR
Agent-based Netlogo model shows the spread of infection (red) and acquired resistance (blue) in a leaf where each agent simulates an ODE replication model. Without CRISPR, one leaf is entirely overwhelmed.

We were quite successful in making a reasonable representation of the normal process of viral spread. A typical model run proceeds as follows:

  • The virus quickly spreads to most of the initially infected lead, with only a small amount of resistance developing.
  • Once it has spread to this entire leaf, it spreads into the plant’s vascular system and the main stem.
  • Soon, all of the vascular structure is carrying the virus. But the infection runs its own course in each leaf.
  • In some cases, resistance builds up and seals off the point of initial infection. In others, the infection spreads into the leaf, but a sizable fraction of it becomes resistant.
  • Apoptosis occurs near the boundaries between infected and resistant regions, often cutting off these regions from the rest of the plant.

In a few cases, the plant is lucky & the initial infection was small, so the infection did not spread beyond the first leaf. However, most simulation runs result in over half the plant being infected.

CRISPR/Cas9 – our intervention

Video of spread in plant with CRISPR
Agent-based Netlogo model shows the spread of infection (red) and acquired resistance (blue) in a leaf where each agent simulates an ODE replication model. The CRISPR effect parameter (t1/2) is captured in the ODE.

When we introduce our CRISPR/Cas9 mechanism, and hold all other parameters constant, we see that the infection is stopped remarkably quickly. It rarely spreads into the vasculature. The level of resistance is correspondingly lower, since the plant detects less of a threat.

This effective prevention of viral spread is maintained even with moderate increases in other viral parameters and/or decrease in resistance.

Discussion

As with many projects in mathematical biology, one of the biggest challenges is finding accurate parameter values. Our slider-based approach was a creative solution that enables us to investigate the balance of different factors in viral spread and resistance, but it was quite arbitrary. Our results remain fundamentally qualitative – we can tell our intervention helps, but we can’t say by how much.

There are two main ways this could be improved. One is simply to more systematically explore this parameter space. Computationally, this would take a long time, since there are many variables with very large feasible ranges, but it is conceptually simple. However, there is a risk that this would not be particularly illuminating.

A better solution is to push for inventive experiments that can better determine these parameters. Tromas and colleagues make excellent use of flow cytometry to get this kind of data . This allows them to determine the infectivity of cells as a function of time. While this doesn’t quite give the probability per time of attempted spread events, it’s a very promising line of inquiry.

A different direction in which this model could be improved is having a more detailed and faithful plant architecture. There are many types of cells in plant leaves, for example, as well as multiple interconnectin plant defense mechanisms. There are also orders of magnitude more cells than we rendered. These changes would be needed to make our model more accurate; they would also entail running it on different software.

References

Top