pub enum Code {
Bases,
Scores,
ReadBase,
Substitution,
Insertion,
Deletion,
InsertBase,
QualityScore,
ReferenceSkip,
SoftClip,
Padding,
HardClip,
}
Expand description
A CRAM record feature kind.
Variants§
Bases
A stretch of bases (b
).
Scores
A stretch of quality scores (q
).
ReadBase
A (base, quality score) pair (B
).
Substitution
A base substitution (CIGAR op X
, M
and =
; X
).
Insertion
Inserted bases (CIGAR op I
; I
).
Deletion
A number of deleted bases (CIGAR op D
; D
).
InsertBase
A single inserted base (CIGAR op I
; i
).
QualityScore
A single quality score (Q
).
ReferenceSkip
A number of skipped bases (CIGAR op N
; N
).
SoftClip
Soft clipped bases (CIGAR op S
; S
).
Padding
A number of padded bases (CIGAR op P
; P
).
HardClip
A number of hard clipped bases (CIGAR op H
, H
).
Trait Implementations§
impl Copy for Code
impl Eq for Code
impl StructuralPartialEq for Code
Auto Trait Implementations§
impl Freeze for Code
impl RefUnwindSafe for Code
impl Send for Code
impl Sync for Code
impl Unpin for Code
impl UnwindSafe for Code
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.