Closed douglasgscofield closed 6 years ago
Thanks for the report. It seems that in my attempt to decouple parts of the code (to make the hashing generalizable to more than just nucleotides k-mers) I broke the swig module. I'll fix it soon, what I may do is create a subclass that expect k-mer sequences.
Okay I've pushed a fix: f02a7d7cb9b238ec1b429baa092229e5a84fe0ed.
I've run the internal tests, let me know if you have any problems, Douglas.
Thanks.
swig/BloomFilter.i
is defining an interface toinsert()
andcontains()
methods acceptingconst char*
butBloomFilter.hpp
doesn't contain those definitions, only ones involvingsize_t
reference or pointer. The tests are expecting to do thinks likeinsert("ATCG")
.