MCPcopy Create free account
hub / github.com/SingleRust/SingleRust / CorrectionMethod

Enum CorrectionMethod

src/memory/processing/diffexp/mod.rs:125–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123/// - Use **StoreyQValue** when you need q-value estimates rather than adjusted p-values
124#[derive(Clone)]
125pub enum CorrectionMethod {
126 /// Bonferroni correction: p_adj = p * n_tests
127 Bonferroni,
128 /// Benjamini-Hochberg FDR correction (recommended for most analyses)
129 BejaminiHochberg,
130 /// Benjamini-Yekutieli FDR correction for dependent tests
131 BenjaminiYekutieli,
132 /// Holm-Bonferroni step-down method
133 HolmBonferroni,
134 /// Hochberg step-up method
135 Hochberg,
136 /// Storey q-value estimation
137 StoreyQValue,
138}
139
140/// Perform differential expression analysis between groups of cells.
141///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected