You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #2157 we decided to add a boolean flag stop_at_local_mrca which states whether we should keep simulating the ancestry of genome segments after an mrca has been reached.
We also want some way of specifying the global stopping condition.
Note that we already have an end_time parameter, which currently allows us to stop simulations early, and could be used as the global stopping condition if we turn off the current default of stopping when all intervals have a local mrca.
I guess there's two options.
We could have a stop_condition parameter which takes a string, and could have things like grand_mrca, all_local_mrcas, time (used in conjunction with end_time above)
Have a single boolean parameter which turns off the current stop condition, like stop_at_all_local_mrcas or something?
In #2157 we decided to add a boolean flag
stop_at_local_mrca
which states whether we should keep simulating the ancestry of genome segments after an mrca has been reached.We also want some way of specifying the global stopping condition.
Note that we already have an end_time parameter, which currently allows us to stop simulations early, and could be used as the global stopping condition if we turn off the current default of stopping when all intervals have a local mrca.
I guess there's two options.
stop_condition
parameter which takes a string, and could have things likegrand_mrca
,all_local_mrcas
,time
(used in conjunction withend_time
above)stop_at_all_local_mrcas
or something?Option (1) seems neater. We'd have something like
to record the full process back to time 100, regardless of whether coalescence occurs or not?
The text was updated successfully, but these errors were encountered: