Wright-Fisher model of evolution
This is one of the simplest models of population genetics that demonstrates the use of sample!. We implement a simple case of the model where we study haploids (cells with a single set of chromosomes) while for simplicity, focus only on one locus (a specific gene). In this example we will be dealing with a population of constant size.
It is also available from the Models module as Models.wright_fisher.
A neutral model
- Imagine a population of
nhaploid individuals. - At each generation,
noffsprings replace the parents. - Each offspring chooses a parent at random and inherits its genetic material.
using Agents
numagents = 100Let's define an agent. The genetic value of an agent is a number (trait field).
mutable struct Haploid <: AbstractAgent
id::Int
trait::Float64
endAnd make a model without any spatial structure:
model = ABM(Haploid)AgentBasedModel with 0 agents of type Haploid no space scheduler: fastest
Create n random individuals:
for i in 1:numagents
add_agent!(model, rand(model.rng))
endTo create a new generation, we can use the sample! function. It chooses random individuals with replacement from the current individuals and updates the model. For example:
sample!(model, nagents(model))The model can be run for many generations and we can collect the average trait value of the population. To do this we will use a model-step function (see step!) that utilizes sample!:
modelstep_neutral!(model::ABM) = sample!(model, nagents(model))We can now run the model and collect data. We use dummystep for the agent-step function (as the agents perform no actions).
using Statistics: mean
data, _ = run!(model, dummystep, modelstep_neutral!, 20; adata = [(:trait, mean)])
data| step | mean_trait | |
|---|---|---|
| Int64 | Float64 | |
| 1 | 0 | 0.502108 |
| 2 | 1 | 0.538608 |
| 3 | 2 | 0.531461 |
| 4 | 3 | 0.541992 |
| 5 | 4 | 0.548552 |
| 6 | 5 | 0.558523 |
| 7 | 6 | 0.57982 |
| 8 | 7 | 0.593878 |
| 9 | 8 | 0.605408 |
| 10 | 9 | 0.571188 |
| 11 | 10 | 0.517833 |
| 12 | 11 | 0.516386 |
| 13 | 12 | 0.485332 |
| 14 | 13 | 0.510029 |
| 15 | 14 | 0.48295 |
| 16 | 15 | 0.478217 |
| 17 | 16 | 0.440758 |
| 18 | 17 | 0.448953 |
| 19 | 18 | 0.427823 |
| 20 | 19 | 0.421834 |
| 21 | 20 | 0.448359 |
As expected, the average value of the "trait" remains around 0.5.
A model with selection
We can sample individuals according to their trait values, supposing that their fitness is correlated with their trait values.
model = ABM(Haploid)
for i in 1:numagents
add_agent!(model, rand(model.rng))
end
modelstep_selection!(model::ABM) = sample!(model, nagents(model), :trait)
data, _ = run!(model, dummystep, modelstep_selection!, 20; adata = [(:trait, mean)])
data| step | mean_trait | |
|---|---|---|
| Int64 | Float64 | |
| 1 | 0 | 0.508108 |
| 2 | 1 | 0.615817 |
| 3 | 2 | 0.713224 |
| 4 | 3 | 0.76079 |
| 5 | 4 | 0.790314 |
| 6 | 5 | 0.824339 |
| 7 | 6 | 0.836574 |
| 8 | 7 | 0.851675 |
| 9 | 8 | 0.858929 |
| 10 | 9 | 0.869889 |
| 11 | 10 | 0.882297 |
| 12 | 11 | 0.891229 |
| 13 | 12 | 0.885766 |
| 14 | 13 | 0.908889 |
| 15 | 14 | 0.91444 |
| 16 | 15 | 0.914898 |
| 17 | 16 | 0.912845 |
| 18 | 17 | 0.917033 |
| 19 | 18 | 0.918522 |
| 20 | 19 | 0.919485 |
| 21 | 20 | 0.920151 |
Here we see that as time progresses, the trait becomes closer and closer to 1, which is expected - since agents with higher traits have higher probability of being sampled for the next "generation".