pub struct GeneExpressionMatrix {
pub genes: Vec<String>,
pub samples: Vec<String>,
pub data: Vec<Vec<f64>>,
}Expand description
Gene expression matrix (simplified).
Fields§
§genes: Vec<String>§samples: Vec<String>§data: Vec<Vec<f64>>Implementations§
Source§impl GeneExpressionMatrix
impl GeneExpressionMatrix
Trait Implementations§
Source§impl Clone for GeneExpressionMatrix
impl Clone for GeneExpressionMatrix
Source§fn clone(&self) -> GeneExpressionMatrix
fn clone(&self) -> GeneExpressionMatrix
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 GeneExpressionMatrix
impl RefUnwindSafe for GeneExpressionMatrix
impl Send for GeneExpressionMatrix
impl Sync for GeneExpressionMatrix
impl Unpin for GeneExpressionMatrix
impl UnsafeUnpin for GeneExpressionMatrix
impl UnwindSafe for GeneExpressionMatrix
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