Container for differential expression results for a single group comparison. Holds the complete statistical results for comparing one group against a reference, including test statistics, p-values, effect sizes, and gene rankings.
| 513 | /// Holds the complete statistical results for comparing one group against a reference, |
| 514 | /// including test statistics, p-values, effect sizes, and gene rankings. |
| 515 | struct GroupTestResults { |
| 516 | /// Test statistics ranked by significance |
| 517 | scores: Vec<f64>, |
| 518 | /// Raw p-values ranked by significance |
| 519 | pvals: Vec<f64>, |
| 520 | /// Multiple testing corrected p-values ranked by significance |
| 521 | pvals_adj: Vec<f64>, |
| 522 | /// Log2 fold changes ranked by significance |
| 523 | logfoldchanges: Vec<f64>, |
| 524 | /// Gene names ranked by significance |
| 525 | gene_names: Vec<String>, |
| 526 | } |
| 527 | |
| 528 | #[allow(clippy::too_many_arguments)] |
| 529 | fn run_tests_for_group<T>( |
nothing calls this directly
no outgoing calls
no test coverage detected