pub enum AggregationMethod {
Mean,
Median,
Max,
Min,
}Expand description
Aggregation method for multiple probes per gene
Variants§
Mean
Take the mean of all probe values (default)
Median
Take the median of all probe values
Max
Take the maximum probe value
Min
Take the minimum probe value
Trait Implementations§
Source§impl Clone for AggregationMethod
impl Clone for AggregationMethod
Source§fn clone(&self) -> AggregationMethod
fn clone(&self) -> AggregationMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AggregationMethod
impl Debug for AggregationMethod
Source§impl Default for AggregationMethod
impl Default for AggregationMethod
Source§fn default() -> AggregationMethod
fn default() -> AggregationMethod
Returns the “default value” for a type. Read more
Source§impl PartialEq for AggregationMethod
impl PartialEq for AggregationMethod
Source§fn eq(&self, other: &AggregationMethod) -> bool
fn eq(&self, other: &AggregationMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AggregationMethod
impl Eq for AggregationMethod
impl StructuralPartialEq for AggregationMethod
Auto Trait Implementations§
impl Freeze for AggregationMethod
impl RefUnwindSafe for AggregationMethod
impl Send for AggregationMethod
impl Sync for AggregationMethod
impl Unpin for AggregationMethod
impl UnsafeUnpin for AggregationMethod
impl UnwindSafe for AggregationMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.