Explain r_break = math.log(2) #2111
-
Hi everyone, the relevant paragraph in "the probability of co-inheritance across generations of two adjacent base pairs separated by a recombination rate r per base pair is exp(-rt). To make these agree, we set the recombination rate in the base pair segments separating chromosomes to log(2)." Earlier in the section it says "the probability that two chromosomes are co-inherited across generations is 2^{-t}". I am just not seeing the connection and why r needs to be bumped up to 0.69315 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think the confusion comes from what There's a lengthier discussion of related things (although the detalis are different) in Section 14.13 of the SLiM manual. |
Beta Was this translation helpful? Give feedback.
-
Thanks Peter, I was wondering if you could help me with the following bit of text "This means that we can add up the λ values for each region along a whole chromosome, even with a complex Suppose I had the following rateMap ┌────────────────────────────────────────────────────┐ does this mean the total λ value = 9999999 * 2e-08 + 1 * 0.69 + 9999999 * 2e-08 = 1.09 Richard |
Beta Was this translation helpful? Give feedback.
I think the confusion comes from what
r
is? For msprime,r
is not a probability-per-generation, but an (continuous-time) rate. So, the number of crossovers in one unit of time is Poisson with meanr
. So, the probability of there being at least one crossover in one unit of time is1 - exp(-r)
, which is approximatelyr - r^2/2
. For very smallr
the difference between "r
is the probability of one crossover in one unit of time" and "there are a Poisson(r
) number of crossovers per unit time" is neglegible, but when we want the probability of crossover to be 1/2, then, well, it turns out we wantr = log(2)
.There's a lengthier discussion of related things (although the detalis are different) in…