pub struct SampleInfo { /* private fields */ }Expand description
contains information about the samples required for graph construction
§Example:
- Sample IDs in group 1: 0, 1, 2
- Sample IDs in group 2: 3, 4, 5, 6
use debruijn::summarizer::{SampleInfo, Marker};
let marker0: Marker = 0b0000111; // = 7
let marker1: Marker = 0b1111000; // = 120
let sample_kmers = vec![1232, 12323, 24342, 24234, 345456, 21234, 546456];
assert_eq!(marker0.count_ones() + marker1.count_ones(), sample_kmers.len() as u32);
let sample_info = SampleInfo::new(marker0, marker1, sample_kmers);
Implementations§
Source§impl SampleInfo
impl SampleInfo
Sourcepub fn new(marker0: Marker, marker1: Marker, sample_kmers: Vec<u64>) -> Self
pub fn new(marker0: Marker, marker1: Marker, sample_kmers: Vec<u64>) -> Self
make a new SampleInfo
§Arguments
marker0: a [M] which binary-encodes the affiliation of the tags to a groupmarker1: same asmarker0, for a second groupsample_kmers: aVec<u64>containing numbers of non-unique k-mers for each sample at the index of the sample-id
Sourcepub fn empty() -> Self
pub fn empty() -> Self
make a new, empty SampleInfo
Sourcepub fn get_markers(&self) -> (Marker, Marker)
pub fn get_markers(&self) -> (Marker, Marker)
get the binary encoded group affiliation of tags
Trait Implementations§
Source§impl Clone for SampleInfo
impl Clone for SampleInfo
Source§fn clone(&self) -> SampleInfo
fn clone(&self) -> SampleInfo
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 moreSource§impl Debug for SampleInfo
impl Debug for SampleInfo
Source§impl<'de> Deserialize<'de> for SampleInfo
impl<'de> Deserialize<'de> for SampleInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for SampleInfo
impl Ord for SampleInfo
Source§fn cmp(&self, other: &SampleInfo) -> Ordering
fn cmp(&self, other: &SampleInfo) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SampleInfo
impl PartialEq for SampleInfo
Source§impl PartialOrd for SampleInfo
impl PartialOrd for SampleInfo
Source§impl Serialize for SampleInfo
impl Serialize for SampleInfo
impl Eq for SampleInfo
impl StructuralPartialEq for SampleInfo
Auto Trait Implementations§
impl Freeze for SampleInfo
impl RefUnwindSafe for SampleInfo
impl Send for SampleInfo
impl Sync for SampleInfo
impl Unpin for SampleInfo
impl UnsafeUnpin for SampleInfo
impl UnwindSafe for SampleInfo
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.