Skip to content

Commit f8ff154

Browse files
author
Ian
committed
bumped version
1 parent a85c12b commit f8ff154

File tree

3 files changed

+138
-11
lines changed

3 files changed

+138
-11
lines changed

Cargo.lock

Lines changed: 135 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "single-statistics"
3-
version = "0.8.3"
3+
version = "0.8.5"
44
edition = "2024"
55
license-file = "LICENSE.md"
66
readme = "README.md"
@@ -15,7 +15,7 @@ enrichment = []
1515
[dependencies]
1616
anyhow = "1.0.98"
1717
indicatif = {version = "0.18.2", features = ["rayon"]}
18-
nalgebra-sparse = "0.10.0"
18+
nalgebra-sparse = "0.11.0"
1919
ndarray = {version = "0.16.1", features = ["rayon"]}
2020
num-traits = "0.2.19"
2121
rayon = "1.10.0"

src/testing/correction/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ where
345345
// Multiply by pi0 to get q-values
346346
let q_values = bh_adjusted
347347
.iter()
348-
.map(|&p| num_traits::Float::min((p * pi0), one))
348+
.map(|&p| num_traits::Float::min(p * pi0, one))
349349
.collect();
350350

351351
Ok(q_values)

0 commit comments

Comments
 (0)