sketchlib 0.4.1

Genome and amino-acid sketching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(not(target_arch = "wasm32"))]
use anyhow::Error;

#[cfg(not(target_arch = "wasm32"))]
fn main() -> Result<(), Error> {
    sketchlib::main()
}

#[cfg(target_arch = "wasm32")]
fn main() {
    sketchlib::main()
}