pub struct DeGeneResult {
pub gene_index: usize,
pub log2_fold_change: f64,
pub base_mean: f64,
pub statistic: f64,
pub p_value: f64,
pub p_adjusted: f64,
}Expand description
Per-gene differential expression result.
Fields§
§gene_index: usizeIndex of the gene in the input matrix.
log2_fold_change: f64Log2 fold-change (condition / control).
base_mean: f64Mean of normalized counts across all samples.
statistic: f64Test statistic (Wald z for NB, U for Wilcoxon).
p_value: f64Raw p-value.
p_adjusted: f64Benjamini-Hochberg adjusted p-value.
Trait Implementations§
Source§impl Clone for DeGeneResult
impl Clone for DeGeneResult
Source§fn clone(&self) -> DeGeneResult
fn clone(&self) -> DeGeneResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DeGeneResult
impl RefUnwindSafe for DeGeneResult
impl Send for DeGeneResult
impl Sync for DeGeneResult
impl Unpin for DeGeneResult
impl UnsafeUnpin for DeGeneResult
impl UnwindSafe for DeGeneResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more