Skip to content

Commit

Permalink
fix wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Nov 5, 2024
1 parent 2989021 commit 4fb0b0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/src/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use crate::encodings::HashFunctions;
use crate::signature::Signature as _Signature;
use crate::signature::SigsTrait;
use crate::sketch::minhash::KmerMinHash as _KmerMinHash;
use crate::ScaledType;

#[wasm_bindgen]
pub struct KmerMinHash(_KmerMinHash);
Expand Down Expand Up @@ -48,7 +49,7 @@ impl KmerMinHash {
};

KmerMinHash(_KmerMinHash::new(
scaled as u64,
scaled,
ksize,
hash_function,
seed as u64,
Expand Down

0 comments on commit 4fb0b0f

Please sign in to comment.