Skip to content

Commit

Permalink
Trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
olgabot committed Oct 28, 2024
1 parent 192f428 commit 9d1a29b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search_significance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ pub fn get_hash_frequencies<'a>(
let frequencies: HashMap<u64, f64> = HashMap::from(
minhash_abunds
.par_iter()
.map(|(hashval, abund)|
.map(|(hashval, abund)|
// TODO: add a match statement here to error out properly if the hashval was not found
// in the minhash_abunds for some reason (shouldn't happen but ... computers be crazy)
(
*hashval,
*hashval,
abund / abund_normalization
))
.collect::<HashMap<u64, f64>>(),
Expand Down

0 comments on commit 9d1a29b

Please sign in to comment.