webgestalt_lib 0.3.2

Library for computing enrichment for different analytes using ORA or GSEA.
Documentation
1
2
3
4
5
6
7
8
9
use pretty_assertions::assert_eq;
use statrs::assert_almost_eq;
const THRESHOLD: f64 = 0.0001;

#[test]
fn read_gmt() {
    let gmt = webgestalt_lib::readers::read_gmt_file("data/ktest.gmt".to_string()).unwrap();
    assert_eq!(gmt.len(), 330)
}