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 #1202 (comment)@petrelharp suggested (and I agree) that it would be useful to add a 'nodes' parameter to the genotype_matrix() method, not only to restrict the size of the matrix returned, but also to be able to output ancestral genotypes/haplotypes (see #1206).
If this is done, I suggest that we might want to reimplement the haplotypes() method to use genotype_matrix() rather than iterating over the variants(), as this would probably remove some fiddly code and also automatically provide a way of getting ancestral (string-format) haplotypes, if we ever need that.
The text was updated successfully, but these errors were encountered:
I'm not sure there's actually much of a perf-gain from doing the genotype matrix stuff in C - we can probably use the variants() method in Python, which would simplify things.
Not quite @petrelharp - there we're talking about having a sites argument as well, which would require random access to the trees to really do properly.
In #1202 (comment) @petrelharp suggested (and I agree) that it would be useful to add a 'nodes' parameter to the
genotype_matrix()
method, not only to restrict the size of the matrix returned, but also to be able to output ancestral genotypes/haplotypes (see #1206).If this is done, I suggest that we might want to reimplement the
haplotypes()
method to usegenotype_matrix()
rather than iterating over thevariants()
, as this would probably remove some fiddly code and also automatically provide a way of getting ancestral (string-format) haplotypes, if we ever need that.The text was updated successfully, but these errors were encountered: