crispr_screen 0.1.14

A fast and configurable differential expression analysis tool for CRISPR screens
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod agg;
pub mod config;
pub mod logging;
pub mod math;
use clap::ValueEnum;

/// Selection for P-Value Adjustments
#[derive(ValueEnum, Clone, Debug)]
pub enum Adjustment {
    /// Bonferroni
    Bf,

    /// Benjamini-Hochberg
    Bh,

    /// Benjamini-Yekutieli
    By,
}