Skip to content

Commit

Permalink
lizard recomb rate estimate
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkern committed Jan 17, 2025
1 parent abde1c4 commit 1790e65
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions stdpopsim/catalog/AnoCar/species.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,21 @@
},
)

# No recombination rate yet for this species.
# Author of BourgeoisEtAl is sending the recombination map
# Placeholder rate of 1cM/Mb used
_recombo_rate = 1e-8
_YurchenkoEtAl = stdpopsim.Citation(
doi="https://doi.org/10.1093/gbe/evaa161",
year=2020,
author="Yurchenko et al.",
reasons={stdpopsim.CiteReason.REC_RATE},
)

# Recombination rate from Yurchenko et al.
# which was calculated from a linkage map
# from a different lizard species, Zootoca vivipara
# the "common lizard"
# they estimated male and female recombination rates
# at 1.49 cM/Mb and 1.69 cM/Mb, respectively
# we can use the average of the two
_recombo_rate = 1.59e-8

_recombination_rate = {
"1": _recombo_rate,
Expand Down

0 comments on commit 1790e65

Please sign in to comment.