You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did some manual performance testing, would be nice to implement Criterion (https://crates.io/crates/criterion) for testing the permutations of variables including:
size of inputs files (# chroms, # of regions), size of universe for tokenization, size of query bedfile, number of hash functions, size of bloomfilter, false postive rate
Input files: total of approximately 8.5 million regions
Universe: 100k regions
Creating using Blooms:
~ 16 seconds
~4.4mb
Creating using IGD:
~8 seconds
~140mb
Querying a file with 24 regions:
bloom method:
0.071 seconds
Igd search:
0.009 seconds
Querying file with 7.1 millions regions:
bloom method:
11 seconds
igd search:
16 seconds
Bloom Filter Tree
Began work on implementing bloom filter tree with this commit: c749f21
Work has successfully begun in this PR: #94
Currently bare bones.
The text was updated successfully, but these errors were encountered: