molpopgen / fwdpp

fwdpp is a C++ template library for implementing efficient forward-time population genetic simulations
http://fwdpp.readthedocs.io
GNU General Public License v3.0
27 stars 11 forks source link

Redesign mutation/recombination code path. #171

Closed molpopgen closed 5 years ago

molpopgen commented 5 years ago

When simulating with tree sequences, we need to record breakpoint/new mutation info. The old multi-locus code path made that hard, which is why that type of simulation is not currently supported for tree sequence recording. This PR fixes that, and unifies the single- and multi- locus APIs.

molpopgen commented 5 years ago

Oops--this PR is an example of a bad idea where I learned something. I need to do this differently.