dual_threshold_optimization 2.0.1

Dual Threshold Optimization compares two ranked lists of features (e.g. genes) to determine the rank threshold for each list that minimizes the hypergeometric p-value of the overlap of features. It then calculates a permutation based empirical p-value and an FDR. Details can be found [in this paper](https://doi.org/10.1101/gr.259655.119)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Statistical operations
//!
//! This module contains functions to calculate p-values and other statistical
//! measures.
pub mod empirical_pvalue;
pub mod fdr;
pub mod hypergeometric_pvalue;
pub mod intersect_genes;

pub use empirical_pvalue::empirical_pvalue;
pub use fdr::fdr;
pub use hypergeometric_pvalue::hypergeometric_pvalue;
pub use intersect_genes::intersect_genes;