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

Class GroupTestResults

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

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.

Source from the content-addressed store, hash-verified

513/// Holds the complete statistical results for comparing one group against a reference,
514/// including test statistics, p-values, effect sizes, and gene rankings.
515struct 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)]
529fn run_tests_for_group<T>(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected