pub struct ReadEnd<'a> {
pub seq: &'a [u8],
pub qual: &'a [u8],
}Expand description
One end (read 1 or read 2) of a paired-end read.
Sequence should be ASCII DNA (ACGTN) and quality should be phred+33.
Fields§
§seq: &'a [u8]DNA sequence bytes (ASCII).
qual: &'a [u8]Base quality bytes (phred+33 ASCII).
Trait Implementations§
impl<'a> Copy for ReadEnd<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReadEnd<'a>
impl<'a> RefUnwindSafe for ReadEnd<'a>
impl<'a> Send for ReadEnd<'a>
impl<'a> Sync for ReadEnd<'a>
impl<'a> Unpin for ReadEnd<'a>
impl<'a> UnsafeUnpin for ReadEnd<'a>
impl<'a> UnwindSafe for ReadEnd<'a>
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