pub struct ContigExtender { /* private fields */ }Implementations§
Source§impl ContigExtender
impl ContigExtender
pub fn new(config: ExtenderConfig) -> Self
pub fn load_reads(&mut self, r1_path: &Path, r2_path: &Path) -> Result<()>
pub fn extend_contigs( &self, contigs: &[FastaRecord], ) -> Result<Vec<ExtendedContig>>
pub fn extend_all_hybrid( &self, contigs: &[FastaRecord], ) -> Result<Vec<ExtendedContig>>
Auto Trait Implementations§
impl Freeze for ContigExtender
impl RefUnwindSafe for ContigExtender
impl Send for ContigExtender
impl Sync for ContigExtender
impl Unpin for ContigExtender
impl UnwindSafe for ContigExtender
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> 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