Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
molpopgen committed Nov 11, 2023
1 parent d8c6edb commit 52c69cd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/short_vignettes/mutationdominance_vignette.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ p = {
"recregions": [fwdpy11.PoissonInterval(0, 1., rho / float(4 * pop.N))],
"rates": (0.0, 1e-3, None),
"prune_selected": False,
"demography": None,
"demography": fwdpy11.ForwardDemesGraph.tubes([pop.N], burnin=10),
"simlen": 10 * pop.N,
}
params = fwdpy11.ModelParams(**p)
Expand Down
2 changes: 1 addition & 1 deletion doc/short_vignettes/neutralmutsafter_vignette.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ p = {
"recregions": [fwdpy11.PoissonInterval(0, 1., rho / float(4 * pop.N))],
"rates": (0.0, 1e-3, None),
"prune_selected": False,
"demography": None,
"demography": fwdpy11.ForwardDemesGraph.tubes([pop.N], burnin=10),
"simlen": 10 * pop.N,
}
params = fwdpy11.ModelParams(**p)
Expand Down
2 changes: 1 addition & 1 deletion doc/short_vignettes/poptour_vignette.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ p = {
"recregions": [fwdpy11.PoissonInterval(0, 1., rho / float(4 * pop.N))],
"rates": (0.0, 1e-3, None),
"prune_selected": False,
"demography": None,
"demography": fwdpy11.ForwardDemesGraph.tubes([pop.N], burnin=10),
"simlen": 10 * pop.N,
}
params = fwdpy11.ModelParams(**p)
Expand Down
1 change: 1 addition & 0 deletions doc/short_vignettes/recapitation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ pop = fwdpy11.DiploidPopulation(100, 1000.0)
pdict = {"rates": (0.0, 0.0, 0.0),
"gvalue": fwdpy11.Multiplicative(2.),
"simlen": 10,
"demography": fwdpy11.ForwardDemesGraph.tubes([100], burnin=10, burnin_is_exact=True),
}
params = fwdpy11.ModelParams(**pdict)
rng = fwdpy11.GSLrng(54321)
Expand Down

0 comments on commit 52c69cd

Please sign in to comment.