-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add genotype to multi-variant mouseover #4799
Conversation
now can get the genotype on mouseover |
The mouseover in the "regular" multi-variant view serializes all the genotypes into an "RBush" (map of mouse coordinate->genotype string essentially) on the server side, and serializes it to the client sid. The RBush has some serialization overhead (lots of genotypes...lots of data) so.. For the matrix multi-variant mode, it renders a 2-d array of genotype strings, since it can more or less deterministically find the genotype in the 2-d matrix position without a rbush-style-click-map |
No description provided.