-
Notifications
You must be signed in to change notification settings - Fork 1
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] New Release v2 #74
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #74 +/- ##
======================================
Coverage ? 0
======================================
Files ? 0
Lines ? 0
Branches ? 0
======================================
Hits ? 0
Misses ? 0
Partials ? 0 ☔ View full report in Codecov by Sentry. |
kmerDecoder migration
kDataFrameSTL<MapType>::kDataFrameSTL(uint64_t ksize, uint64_t nKmers) { | ||
this->class_name = "STL"; // Temporary until resolving #17 | ||
this->kSize = ksize; | ||
KD = new Kmers(kSize, TwoBits_hasher); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shokrof Why is the TwoBits_hasher used here instead of integer hashing? TwoBits_hasher does not really hash the kmers, just returns the two-bit representation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you using here std::hash instead of the hashing modes in kmerDecoder?
No description provided.