-
Notifications
You must be signed in to change notification settings - Fork 0
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
WIP: Combine KmerCountTables with Add() #73
base: main
Are you sure you want to change the base?
Conversation
…e skip_bad_kmers behaviour.
Not sold on having a subtract method, might get rid of it. |
…e after being dropped
Ditched the subtract function. Need to decide if we should allow adding a table to itself - this creates issues around borrowing the same object multiple times and is generally a bit of a pain. Maybe just raise error if trying to add table to itself? |
I'm giving up on trying to check if self and other are the same table. Just let it die with borrow error. |
hah! over in #83 I created a |
I am wondering if we want to avoid doing merges in parallel fashion? The locking is going to add a lot of overhead I think. |
Should I fully remove parallelisation from the function? |
KmerCountTable
KmerCountTable
Closes #62