-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
compute-optimized MinHash (for small scaled or large cardinalities) (#…
…1045) * large minhash, implemented as a btree * use large minhash for compute by default * fix lints and msrv (older backtrace crate) * many property tests, oracle-based to compare both implementations * bump rust version
- Loading branch information
Showing
11 changed files
with
1,485 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sourmash" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["Luiz Irber <[email protected]>"] | ||
description = "MinHash sketches for genomic data" | ||
repository = "https://github.com/dib-lab/sourmash" | ||
|
@@ -25,6 +25,7 @@ parallel = ["rayon"] | |
#cbindgen = "~0.14.2" | ||
|
||
[dependencies] | ||
backtrace = "=0.3.46" # later versions require rust 1.40 | ||
byteorder = "1.3.4" | ||
cfg-if = "0.1.10" | ||
failure = "0.1.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.