Lecture 17: Multi-locus population genetics
Lecture overview
1. Multi-locus population genetics
In Lecture 15 we learned how to find equilibria and determine their stability in nonlinear multivariate models. In Lecture 16 we looked at a continuous-time example from epidemiology. Here, we'll extend the discrete-time dipliod selection model of Lecture 4 to multiple loci (see Section 8.3 in the text).
Genomes contain many loci -- what new dynamics arise when we model more than one locus? Here we look at the simplest multi-locus model, with two loci each with two alleles. Let's denote the loci with letters,
genotype | frequency |
---|---|
with the constraint that the total frequency sums to one,
To determine how these frequencies change from one generation to the next, let's first determine the order of events in a life-cycle diagram
In words, we'll census the population in the gamete (haploid) phase while selection happens in the diploid phase.
Next, to consider how the frequencies change through this life cyle, let's construct a life-cycle (mating) table. To do this, we need to consider what happens during meiosis when there are multiple loci.
In the 1-locus models we analyzed earlier, meiosis meant Mendelian segregation: each allele is present in 1/2 of the gametes. Here, with 2 loci, things are slightly more complicated and we need to consider recombination. Every meiosis there is a chance,
We can now fill in the following table
union | frequency | frequency after selection | gamete frequency after meiosis ( |
---|---|---|---|
1, 0, 0, 0 | |||
1/2, 1/2, 0, 0 | |||
1/2, 0, 1/2, 0 | |||
0, 1, 0, 0 | |||
0, 1/2, 0, 1/2 | |||
0, 0, 1, 0 | |||
0, 0, 1/2, 1/2 | |||
0, 0, 0, 1 |
where
We can build the recursion equations from this table by multiplying the frequency after selection by the gamete frequency after meiosis. For example, the frequency of
where
The remaining equations are created in the same way, giving
Now we have a system of recursion equations to work with. This system is nonlinear and four dimensional, which makes things relatively complex. For instance, it is impossible to find all the equilibria analytically. Here we'll not worry about that and just deal with a particularly simple equilibrium where
To determine the stability of this equilbrium we need to calculate the Jacobian
(we omit writing out the derivatives for brevity) and then evaluate it at the focal equilibrium,
The first eigenvalue,
The second and third eigenvalues,
The fourth eigenvalue,
import matplotlib.pyplot as plt w11=1 w12=0.9 w13=0.8 w14=1.1 fig,ax=plt.subplots() ax.plot([0,1,2],[w11,w12,w14],marker='o') ax.plot([0,1,2],[w11,w13,w14],marker='o') ax.text(0,w11,r'$A_1B_1$',va='bottom') ax.text(1,w12,r'$A_1B_2$',va='top') ax.text(1,w13,r'$A_2B_1$',va='top') ax.text(2,w14,r'$A_2B_2$',va='bottom',ha='right') ax.set_ylabel('fitness') ax.set_xlabel('number of "2" alleles') ax.set_xticks([0,1,2]) plt.show()
Here we've seen how recombination can slow the spread of the optimal genotype,