GillespieSSA-package {GillespieSSA}R Documentation

Gillespie Stochastic Simulation Algorithm package

Description

Package description and overview of basic SSA theory

GillespieSSA is a versatile and extensible framework for stochastic simulation in R and provides a simple interface to a number of Monte Carlo implementations of the stochastic simulation algorithm (SSA). The methods currently implemented are: the Direct method, Explicit tau-leaping (ETL), Binomial tau-leaping (BTL), and Optimized tau-leaping (OTL). The package also provides a library of ecological, epidemiological, and evolutionary continuous-time (demo) models that can easily be customized and extended. Currently the following models are included, Decaying-Dimerization Reaction Set, Linear Chain System, single-species logistic growth model, Lotka predator-prey model, Rosenzweig-MacArthur predator-prey model, Kermack-McKendrick SIR model, and a metapopulation SIRS model.

The stochastic simulation algorithm

The stochastic simulation algorithm (SSA) is a procedure for constructing simulated trajectories of finite populations in continuous time. If X_i(t) is the number of individuals in population i (i=1,\ldots,N) at time t the SSA estimates the state vector \mathbf{X}(t) \equiv (X_1(t),\ldots,X_N(t)) , given that the system initially (at time t_0) was in state \mathbf{X}(t_0)=\mathbf{x_0}. Reactions, single instantaneous events changing at least one of the populations (e.g. birth, death, movement, collision, predation, infection, etc), cause the state of the system to change over time. The SSA procedure samples the time \tau to the next reaction R_j (j=1,\ldots,M) and updates the system state \mathbf{X}(t) accordingly. Each reaction R_j is characterized mathematically by two quantities; its state-change vector \bm{\nu}_j \equiv ( \nu_{1j},\ldots,\nu_{Nj} ), where \nu_{ij} is the change in the number of individuals in population i caused by one reaction of type j and its propensity function a_j(\mathbf{x}), where a_j(\mathbf{x})dt is the probability that a particular reaction j will occur in the next infinitesimal time interval \left[t,t+dt\right].

SSA implementations

There are numerous exact Monte Carlo procedures implementing the SSA. Perhaps the simplest is the Direct method of Gillespie (1977. The Direct method is an exact continuous-time numerical realization of the corresponding stochastic time-evolution equation. Because the Direct method simulates one reaction at a time it is often, however, computationally too slow for practical applications.

Approximate implementations of the SSA sacrifices exactness for large improvements in computational efficiency. The most common technique used is tau-leaping where reaction-bundles are attempted in coarse-grained time increments \tau. Speed-ups of several orders of magnitude compared to the Direct method are common. Tau-leaping must be used with care, however, as it is not as foolproof as the Direct method.

Example models

Individual demo models can be run by issuing ⁠demo(<model name>)⁠, alternatively all of the demo models can be run using demo(GillespieSSA). The following example models are available:

Decaying-Dimerization Reaction Set (Gillespie, 2001)
vignette("decaying_dimer", package = "GillespieSSA")
SIRS metapopulation model (Pineda-Krch, 2008)
vignette("epi_chain", package = "GillespieSSA")
Linear Chain System (Cao et al., 2004)
vignette("linear_chain", package = "GillespieSSA")
Pearl-Verhulst Logistic growth model (Kot, 2001, Pineda-Krch, 2008)
vignette("logistic_growth", package = "GillespieSSA")
Lotka predator-prey model (Gillespie, 1977; Kot, 2001)
vignette("lotka_predator_prey", package = "GillespieSSA")
Radioactive decay model (Gillespie, 1977)
vignette("radioactive_decay", package = "GillespieSSA")
Rosenzweig-MacArthur predator-prey model (Pineda-Krch et al., 2007, Pineda-Krch, 2008)
vignette("rm_predator_prey", package = "GillespieSSA")
Kermack-McKendrick SIR model (Brown & Rothery, 1993)
vignette("sir", package = "GillespieSSA")

Acknowledgements

References

See Also

ssa(), ssa.d(), ssa.etl(), ssa.btl(), ssa.otl(), ssa.plot()


[Package GillespieSSA version 0.6.2 Index]