-
Notifications
You must be signed in to change notification settings - Fork 6
Add set_k function to miBf #139
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
base: master
Are you sure you want to change the base?
Conversation
tests/python/test_mi_bloom_filter.py
Outdated
| def set_up_mi_bf_1(self): | ||
|
|
||
| self.mi_bf_1 = btllib.MIBloomFilter8(1024 * 1024, 3, "ntHash") | ||
| self.mi_bf_1.set_k() = 10 |
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.
I think this should be self.mi_bf_1.set_k(10)?
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.
thanks for spotting that. That is strange, the test didn't fail locally. Maybe I didn't save before running
azure-pipelines.yml
Outdated
| source activate btllib_CI | ||
| conda install --yes -c conda-forge mamba | ||
| mamba install --yes -c conda-forge -c bioconda libcxx compilers clang llvm clang-format=18 clang-tools boost samtools coreutils xz lrzip meson ninja cmake openmp | ||
| mamba install --yes -c conda-forge -c bioconda libcxx compilers clang llvm clang-format=18 clang-tools boost samtools coreutils xz lrzip meson ninja cmake<4 openmp |
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.
'cmake<4' (in single quotes) should resolve the issue
No description provided.