pub struct DeResults {
pub genes: Vec<DeGeneResult>,
pub method: DeMethod,
pub n_genes: usize,
pub n_condition: usize,
pub n_control: usize,
}Expand description
Aggregate results from a differential expression analysis.
Fields§
§genes: Vec<DeGeneResult>Per-gene results, sorted by p_value ascending.
method: DeMethodMethod used.
n_genes: usizeNumber of genes tested.
n_condition: usizeNumber of condition (treatment) samples.
n_control: usizeNumber of control samples.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeResults
impl RefUnwindSafe for DeResults
impl Send for DeResults
impl Sync for DeResults
impl Unpin for DeResults
impl UnsafeUnpin for DeResults
impl UnwindSafe for DeResults
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