pub struct Unitig {
pub sequence: Vec<u8>,
pub coverage: f64,
}Expand description
A unitig: a maximal non-branching path through the De Bruijn graph.
Fields§
§sequence: Vec<u8>The assembled sequence of the unitig.
coverage: f64Mean k-mer coverage along the unitig.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Unitig
impl RefUnwindSafe for Unitig
impl Send for Unitig
impl Sync for Unitig
impl Unpin for Unitig
impl UnsafeUnpin for Unitig
impl UnwindSafe for Unitig
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