Skip to content

Commit

Permalink
Merge pull request #82 from andrewkern/sheehan_song_fix
Browse files Browse the repository at this point in the history
fixed a bug with the times in sheehan and song model
  • Loading branch information
andrewkern committed May 28, 2019
2 parents 2542d14 + 1337fc7 commit 59a37c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdpopsim/drosophila_melanogaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(self):
# Times are provided in 4N_ref generations, so we convert into generations.
# generation_time = 10 / year
t_1 = t_1_coal * 4 * N_ref
t_2 = t_2_coal * 4 * N_ref
t_2 = (t_1_coal + t_2_coal) * 4 * N_ref
# Single population in this model
self.population_configurations = [
msprime.PopulationConfiguration(initial_size=N_R),
Expand Down

0 comments on commit 59a37c7

Please sign in to comment.