pub struct CorrectionResults {
pub read_index: u64,
pub label: String,
pub original_seq: String,
pub corrected_seq: String,
pub avg_before: f64,
pub avg_after: f64,
}Expand description
a struct for storing the modified string
Fields§
§read_index: u64The index associated with the read
label: StringThe read label/identifier
original_seq: StringThe original, uncorrected sequence
corrected_seq: StringThe modified, corrected sequence
avg_before: f64If verbose is set, this will store the average k-mer count before correction
avg_after: f64If verbose is set, this will store the average k-mer count after correction
Trait Implementations§
Source§impl Clone for CorrectionResults
impl Clone for CorrectionResults
Source§fn clone(&self) -> CorrectionResults
fn clone(&self) -> CorrectionResults
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 CorrectionResults
impl RefUnwindSafe for CorrectionResults
impl Send for CorrectionResults
impl Sync for CorrectionResults
impl Unpin for CorrectionResults
impl UnwindSafe for CorrectionResults
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<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