pub struct PairedAlignment {}Expand description
Result of a paired-end alignment
Fields§
§chr1: u32Chromosome index for mate 1
pos1: u64Position for mate 1 (0-based)
strand1: boolStrand for mate 1 (true = forward)
cigar1: StringCIGAR for mate 1
score1: ScoreScore for mate 1
edits1: u32Number of edits for mate 1
chr2: u32Chromosome index for mate 2
pos2: u64Position for mate 2 (0-based)
strand2: boolStrand for mate 2 (true = forward)
cigar2: StringCIGAR for mate 2
score2: ScoreScore for mate 2
edits2: u32Number of edits for mate 2
insert_size: i32Insert size (TLEN in SAM)
alignment_type: PeAlignmentTypeAlignment type
mapq: u8Mapping quality
Implementations§
Trait Implementations§
Source§impl Clone for PairedAlignment
impl Clone for PairedAlignment
Source§fn clone(&self) -> PairedAlignment
fn clone(&self) -> PairedAlignment
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 moreSource§impl Debug for PairedAlignment
impl Debug for PairedAlignment
Source§impl Default for PairedAlignment
impl Default for PairedAlignment
Source§fn default() -> PairedAlignment
fn default() -> PairedAlignment
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PairedAlignment
impl RefUnwindSafe for PairedAlignment
impl Send for PairedAlignment
impl Sync for PairedAlignment
impl Unpin for PairedAlignment
impl UnsafeUnpin for PairedAlignment
impl UnwindSafe for PairedAlignment
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