pub struct StitchedContig {
pub name: String,
pub seq: String,
pub arg_start: usize,
pub arg_end: usize,
}Expand description
One stitched flanking contig for a locus, with the ARG gene glued back on and the gene’s coordinates on the stitched sequence (for re-classification).
Fields§
§name: String§seq: String§arg_start: usize§arg_end: usizeAuto Trait Implementations§
impl Freeze for StitchedContig
impl RefUnwindSafe for StitchedContig
impl Send for StitchedContig
impl Sync for StitchedContig
impl Unpin for StitchedContig
impl UnsafeUnpin for StitchedContig
impl UnwindSafe for StitchedContig
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