At the moment we're using the feature where we pass in per-position mutation rates for our sequences, e.g.
position, rate
0, 0.3
1, 0.2
[...]
37, 0.1
But we also need to be able to specify different probabilities of mutating to each base, say position 1 almost always goes to C. We'd like to pass in something like this instead:
position, rate_A, rate_C, rate_G, rate_T
0, 0.1, 0.7, 0.1, 0.1
1, 0.85, 0.05, 0.05, 0.05
....
35, 0.02, 0.02, 0.02, 0.94
So two things: 1) we're pretty sure this isn't present in bppseqgen at the moment, but if it is present hopefully someone can tell us? and 2) we're assuming it's not there, so we're about to implement it, so any pointers would be much appreciated.
thanks!