jam-rs 0.9.10

Just another (genomic) minhash (Jam) implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Result;

#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;

fn main() -> Result<()> {
    jam_rs::run()
}