pub struct VolcanoPoint {
pub gene_index: usize,
pub log2_fold_change: f64,
pub neg_log10_padj: f64,
pub significant: bool,
}Expand description
A point for a volcano plot.
Fields§
§gene_index: usizeGene index from the original matrix.
log2_fold_change: f64Log2 fold-change.
neg_log10_padj: f64−log10(adjusted p-value), clamped to 300.
significant: boolWhether this gene passes significance thresholds.
Trait Implementations§
Source§impl Clone for VolcanoPoint
impl Clone for VolcanoPoint
Source§fn clone(&self) -> VolcanoPoint
fn clone(&self) -> VolcanoPoint
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 VolcanoPoint
impl RefUnwindSafe for VolcanoPoint
impl Send for VolcanoPoint
impl Sync for VolcanoPoint
impl Unpin for VolcanoPoint
impl UnsafeUnpin for VolcanoPoint
impl UnwindSafe for VolcanoPoint
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