The Evolutionary Emergence of Pathogens
Most pathogens that spill into humans are poorly adapted to the new host and start subcritical, with , so each introduction is a stuttering chain destined to die out. Emergence is the rare event where an adaptive mutation lifts above one before the chain goes extinct. It is a race between adaptation and extinction, and the same branching-process machinery that governs whether a spillover takes off also governs whether it can evolve its way to a pandemic (Antia et al. 2003).
Emergence as evolutionary rescue
A subcritical introduction forms a branching process whose mean offspring number is the wild-type reproduction number . On its own that chain is doomed: extinction is certain. But at each transmission the pathogen can mutate to an adapted type with , which then has a positive chance of establishing. Emergence is evolutionary rescue in a transmission chain: a declining lineage saved by a variant that arises and spreads before the wild type burns out (Antia et al. 2003).
Probability of emergence
Two branching-process facts combine into the emergence probability. A single adapted case establishes with probability , where is the extinction probability of the adapted process, the smallest root of for the mutant offspring generating function. A subcritical wild-type chain seeded by one case produces, in expectation, transmissions in total, the geometric sum of . If each transmission throws off an adapted mutant with probability , treating rare mutant lineages as independent gives
The whole story sits in the factor . As it diverges, so a spillover that almost spreads lingers for many generations and gives adaptation many attempts. A strain with just below one is therefore far more dangerous than its subcritical label suggests, and the dependence on initial is steep rather than gentle.
What limits emergence
The simple formula assumes a single mutation suffices, but real adaptation is more constrained (Gandon, Hochberg, Holt & Day 2013). When the jump to needs several mutations in sequence, each intermediate is itself subcritical and usually lost, so the path narrows sharply. Emergence also depends on the supply of chains: a larger, longer-lived reservoir of spillover events means more independent attempts, and standing genetic variation in the reservoir can pre-load the adapted type instead of waiting for it to arise de novo. These factors set how often the race is even run, not just whether a given chain wins it.
The life history of emergence
Which adapted strains emerge is shaped by the disease’s life history and its epidemiological feedbacks (André & Day 2005). Because emergence selects among variants during the brief subcritical window, the strains that win are those that raise fastest, which is not always the eventual evolutionarily optimal virulence. A variant that transmits early and hard can emerge even if it would later be outcompeted, so the trait distribution among emerging pathogens is biased by the emergence process itself, not just by long-run selection.
A worked example
Take an adapted type with contacts and per-contact transmission , so . Solving gives an establishment probability . With mutation probability per transmission, a wild type at throws off transmissions on average, so . Push the wild type to and it throws off transmissions, roughly quadrupling the emergence probability from the same mutation rate: the steep dependence on how close the spillover starts to threshold.
In code
The executed block simulates the two-type branching process directly, seeding many subcritical chains that can mutate at each transmission, and estimates the emergence probability for two initial values.
Python
import numpy as np
rng = np.random.default_rng(1834)
n, pm, mu = 10, 0.16, 2e-3 # mutant contacts, per-contact risk, mutation prob
Rm = n * pm # adapted-type R0 = 1.6
def mutant_establishes(): # does one adapted lineage escape extinction?
z = 1
for _ in range(300):
z = rng.binomial(n, pm, size=z).sum()
if z == 0:
return False
if z > 500: # runaway growth counts as established
return True
return True
def emerges(Rw): # one subcritical spillover, adaptation allowed
pw = Rw / n
z = 1
for _ in range(500):
if z == 0:
return False # wild-type chain died before adapting
kids = int(rng.binomial(n, pw, size=z).sum())
n_mut = rng.binomial(kids, mu)
for _ in range(n_mut):
if mutant_establishes():
return True
z = kids - n_mut
return False
n_sim = 30000
for Rw in (0.8, 0.95):
p = np.mean([emerges(Rw) for _ in range(n_sim)])
print(f"initial R0 = {Rw}: P(emergence) ~ {p:.4f}")
initial R0 = 0.8: P(emergence) ~ 0.0052
initial R0 = 0.95: P(emergence) ~ 0.0218
R
set.seed(1834)
n <- 10; pm <- 0.16; mu <- 2e-3
mutant_establishes <- function() {
z <- 1
for (g in 1:300) {
z <- sum(rbinom(z, n, pm))
if (z == 0) return(FALSE)
if (z > 500) return(TRUE)
}
TRUE
}
emerges <- function(Rw) {
pw <- Rw / n; z <- 1
for (g in 1:500) {
if (z == 0) return(FALSE)
kids <- sum(rbinom(z, n, pw))
n_mut <- rbinom(1, kids, mu)
if (n_mut > 0 && any(replicate(n_mut, mutant_establishes()))) return(TRUE)
z <- kids - n_mut
}
FALSE
}
for (Rw in c(0.8, 0.95))
cat(Rw, mean(replicate(30000, emerges(Rw))), "\n")
Julia
using Random, Distributions, Statistics
Random.seed!(1834)
n, pm, mu = 10, 0.16, 2e-3
function mutant_establishes()
z = 1
for _ in 1:300
z = sum(rand(Binomial(n, pm), z))
z == 0 && return false
z > 500 && return true
end
true
end
function emerges(Rw)
pw = Rw / n; z = 1
for _ in 1:500
z == 0 && return false
kids = sum(rand(Binomial(n, pw), z))
n_mut = rand(Binomial(kids, mu))
for _ in 1:n_mut
mutant_establishes() && return true
end
z = kids - n_mut
end
false
end
for Rw in (0.8, 0.95)
println(Rw, " ", mean(emerges(Rw) for _ in 1:30000))
end
Why it matters
Evolutionary emergence is the quantitative core of pandemic-risk reasoning. It explains why surveillance should worry most about spillovers that are nearly transmissible, since a pathogen at can be an order of magnitude more likely to emerge than one at , and why cutting the mutation supply, by reducing the number and duration of spillover chains, lowers risk even when no single introduction looks threatening. It ties zoonotic spillover to the branching-process theory of extinction and to the evolution of virulence, making emergence a race whose odds we can estimate rather than a black swan we can only fear.