Struct noodles_sam::alignment::record::Flags
source · pub struct Flags(/* private fields */);
Expand description
Alignment record flags.
Implementations§
source§impl Flags
impl Flags
sourcepub const PROPERLY_ALIGNED: Self = _
👎Deprecated since 0.54.0: Use PROPERLY_SEGMENTED
instead.
pub const PROPERLY_ALIGNED: Self = _
PROPERLY_SEGMENTED
instead.Each segment in the read is properly aligned (0x02
).
sourcepub const PROPERLY_SEGMENTED: Self = _
pub const PROPERLY_SEGMENTED: Self = _
Each segment in the read is properly aligned (0x02
).
sourcepub const MATE_UNMAPPED: Self = _
pub const MATE_UNMAPPED: Self = _
The mate is unmapped (0x08
).
sourcepub const REVERSE_COMPLEMENTED: Self = _
pub const REVERSE_COMPLEMENTED: Self = _
The sequence is reverse complemented (0x10
).
sourcepub const MATE_REVERSE_COMPLEMENTED: Self = _
pub const MATE_REVERSE_COMPLEMENTED: Self = _
The sequence of the mate is reverse complemented (0x20
).
sourcepub const FIRST_SEGMENT: Self = _
pub const FIRST_SEGMENT: Self = _
First segment in the read (0x40
).
sourcepub const LAST_SEGMENT: Self = _
pub const LAST_SEGMENT: Self = _
Last segment in the read (0x80
).
sourcepub const SUPPLEMENTARY: Self = _
pub const SUPPLEMENTARY: Self = _
Supplementary alignment (0x0800
).
source§impl Flags
impl Flags
sourcepub const fn bits(&self) -> u16
pub const fn bits(&self) -> u16
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
sourcepub const fn from_bits(bits: u16) -> Option<Self>
pub const fn from_bits(bits: u16) -> Option<Self>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u16) -> Self
pub const fn from_bits_truncate(bits: u16) -> Self
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u16) -> Self
pub const fn from_bits_retain(bits: u16) -> Self
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<Self>
pub fn from_name(name: &str) -> Option<Self>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn remove(&mut self, other: Self)
pub fn remove(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
sourcepub fn toggle(&mut self, other: Self)
pub fn toggle(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
sourcepub const fn symmetric_difference(self, other: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§impl Flags
impl Flags
sourcepub const fn iter(&self) -> Iter<Flags>
pub const fn iter(&self) -> Iter<Flags>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
sourcepub const fn iter_names(&self) -> IterNames<Flags>
pub const fn iter_names(&self) -> IterNames<Flags>
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
source§impl Flags
impl Flags
sourcepub fn is_segmented(self) -> bool
pub fn is_segmented(self) -> bool
Returns whether the SEGMENTED
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::SEGMENTED.is_segmented());
assert!(!Flags::UNMAPPED.is_segmented());
sourcepub fn is_properly_aligned(self) -> bool
👎Deprecated since 0.54.0: Use Flags::is_properly_segmented
instead.
pub fn is_properly_aligned(self) -> bool
Flags::is_properly_segmented
instead.Returns whether the PROPERLY_ALIGNED
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::PROPERLY_ALIGNED.is_properly_aligned());
assert!(!Flags::UNMAPPED.is_properly_aligned());
sourcepub fn is_properly_segmented(self) -> bool
pub fn is_properly_segmented(self) -> bool
Returns whether the PROPERLY_SEGMENTED
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::PROPERLY_SEGMENTED.is_properly_segmented());
assert!(!Flags::UNMAPPED.is_properly_segmented());
sourcepub fn is_unmapped(self) -> bool
pub fn is_unmapped(self) -> bool
Returns whether the UNMAPPED
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::UNMAPPED.is_unmapped());
assert!(!Flags::SEGMENTED.is_unmapped());
sourcepub fn is_mate_unmapped(self) -> bool
pub fn is_mate_unmapped(self) -> bool
Returns whether the MATE_UNMAPPED
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::MATE_UNMAPPED.is_mate_unmapped());
assert!(!Flags::UNMAPPED.is_mate_unmapped());
sourcepub fn is_reverse_complemented(self) -> bool
pub fn is_reverse_complemented(self) -> bool
Returns whether the REVERSE_COMPLEMENTED
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::REVERSE_COMPLEMENTED.is_reverse_complemented());
assert!(!Flags::UNMAPPED.is_reverse_complemented());
sourcepub fn is_mate_reverse_complemented(self) -> bool
pub fn is_mate_reverse_complemented(self) -> bool
Returns whether the MATE_REVERSE_COMPLEMENTED
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::MATE_REVERSE_COMPLEMENTED.is_mate_reverse_complemented());
assert!(!Flags::UNMAPPED.is_mate_reverse_complemented());
sourcepub fn is_first_segment(self) -> bool
pub fn is_first_segment(self) -> bool
Returns whether the FIRST_SEGMENT
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::FIRST_SEGMENT.is_first_segment());
assert!(!Flags::UNMAPPED.is_first_segment());
sourcepub fn is_last_segment(self) -> bool
pub fn is_last_segment(self) -> bool
Returns whether the LAST_SEGMENT
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::LAST_SEGMENT.is_last_segment());
assert!(!Flags::UNMAPPED.is_last_segment());
sourcepub fn is_secondary(self) -> bool
pub fn is_secondary(self) -> bool
Returns whether the SECONDARY
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::SECONDARY.is_secondary());
assert!(!Flags::UNMAPPED.is_secondary());
sourcepub fn is_qc_fail(self) -> bool
pub fn is_qc_fail(self) -> bool
Returns whether the QC_FAIL
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::QC_FAIL.is_qc_fail());
assert!(!Flags::UNMAPPED.is_qc_fail());
sourcepub fn is_duplicate(self) -> bool
pub fn is_duplicate(self) -> bool
Returns whether the DUPLICATE
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::DUPLICATE.is_duplicate());
assert!(!Flags::UNMAPPED.is_duplicate());
sourcepub fn is_supplementary(self) -> bool
pub fn is_supplementary(self) -> bool
Returns whether the SUPPLEMENTARY
flag is set.
§Examples
use noodles_sam::alignment::record::Flags;
assert!(Flags::SUPPLEMENTARY.is_supplementary());
assert!(!Flags::UNMAPPED.is_supplementary());
Trait Implementations§
source§impl BitAndAssign for Flags
impl BitAndAssign for Flags
source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
The bitwise and (&
) of the bits in two flags values.
source§impl BitOrAssign for Flags
impl BitOrAssign for Flags
source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
The bitwise or (|
) of the bits in two flags values.
source§impl BitXorAssign for Flags
impl BitXorAssign for Flags
source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
source§impl Extend<Flags> for Flags
impl Extend<Flags> for Flags
source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
The bitwise or (|
) of the bits in each flags value.
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl Flags for Flags
impl Flags for Flags
source§fn from_bits_retain(bits: u16) -> Flags
fn from_bits_retain(bits: u16) -> Flags
source§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
source§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
source§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
source§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
source§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
source§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|
) of the bits in two flags values.source§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read moresource§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^
) of the bits in two flags values.source§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.source§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read moresource§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.source§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.source§impl FromIterator<Flags> for Flags
impl FromIterator<Flags> for Flags
source§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
The bitwise or (|
) of the bits in each flags value.
source§impl IntoIterator for Flags
impl IntoIterator for Flags
source§impl PartialEq for Flags
impl PartialEq for Flags
source§impl Sub for Flags
impl Sub for Flags
source§impl SubAssign for Flags
impl SubAssign for Flags
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
impl Copy for Flags
impl Eq for Flags
impl StructuralPartialEq for Flags
Auto Trait Implementations§
impl Freeze for Flags
impl RefUnwindSafe for Flags
impl Send for Flags
impl Sync for Flags
impl Unpin for Flags
impl UnwindSafe for Flags
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
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
key
and return true
if they are equal.