blutils-core 8.3.1

A utility to make it easier to run and analyze Blast results
Documentation
1
2
3
4
pub(crate) fn round(value: f64, decimals: u32) -> f64 {
    let y = 10i32.pow(decimals) as f64;
    (value * y).round() / y
}