| 123 | /// - Use **StoreyQValue** when you need q-value estimates rather than adjusted p-values |
| 124 | #[derive(Clone)] |
| 125 | pub 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 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected