noodles_cram::record

Struct Record

Source
pub struct Record { /* private fields */ }
Expand description

A CRAM record.

Implementations§

Source§

impl Record

Source

pub fn try_from_alignment_record<R>(header: &Header, record: &R) -> Result<Self>
where R: Record + ?Sized,

Converts an alignment record to a CRAM record.

Source

pub fn try_into_alignment_record(self, header: &Header) -> Result<RecordBuf>

Converts this CRAM record to an alignment record.

Source§

impl Record

Source

pub fn builder() -> Builder

Returns a builder to create a record from each of its fields.

Source

pub fn bam_flags(&self) -> Flags

Returns the BAM flags.

This is also called the BAM bit flags.

Source

pub fn flags(&self) -> Flags

Returns the SAM flags.

Source

pub fn cram_flags(&self) -> Flags

Returns the CRAM flags.

This is also called the CRAM bit flags or compression bit flags.

Source

pub fn reference_sequence_id(&self) -> Option<usize>

Returns the reference sequence ID.

This is also called the reference ID. It is the position of the reference sequence in the SAM header.

Source

pub fn reference_sequence<'h>( &self, reference_sequences: &'h ReferenceSequences, ) -> Option<Result<(&'h [u8], &'h Map<ReferenceSequence>)>>

Returns the associated reference sequence.

Source

pub fn read_length(&self) -> usize

Returns the read length.

Source

pub fn alignment_start(&self) -> Option<Position>

Returns the alignment start.

This position is 1-based, inclusive.

Source

pub fn alignment_end(&self) -> Option<Position>

Returns the alignment end.

This position is 1-based, inclusive.

Source

pub fn read_group_id(&self) -> Option<usize>

Returns the read group ID.

This is also simply called the read group. It is the position of the read group in the SAM header.

Source

pub fn name(&self) -> Option<&BStr>

Returns the name.

Source

pub fn next_mate_flags(&self) -> MateFlags

Returns the next mate flags.

This is also call the next mate bit flags.

Source

pub fn next_fragment_reference_sequence_id(&self) -> Option<usize>

Returns the reference sequence ID of the next fragment.

It is the position of the reference sequence in the SAM header.

Source

pub fn mate_reference_sequence<'h>( &self, reference_sequences: &'h ReferenceSequences, ) -> Option<Result<(&'h [u8], &'h Map<ReferenceSequence>)>>

Returns the associated mate reference sequence.

Source

pub fn next_mate_alignment_start(&self) -> Option<Position>

Returns the alignment start position of the next mate.

This value is 1-based.

Source

pub fn mate_alignment_start(&self) -> Option<Position>

Returns the alignment start.

Source

pub fn template_size(&self) -> i32

Returns the template size.

Source

pub fn template_length(&self) -> i32

Returns the template size.

Source

pub fn distance_to_next_fragment(&self) -> Option<usize>

Returns the distance to the next fragment.

This is the number of records to the next fragment within a slice.

Source

pub fn tags(&self) -> &Data

Returns the tag dictionary.

Source

pub fn data(&self) -> &Data

Returns the data.

Source

pub fn bases(&self) -> &Sequence

👎Deprecated since 0.70.0: Use Record::sequence instead.

Returns the read bases.

Source

pub fn sequence(&self) -> &Sequence

Returns the sequence.

Source

pub fn features(&self) -> &Features

Returns the read features.

Source

pub fn mapping_quality(&self) -> Option<MappingQuality>

Returns the mapping quality.

Source

pub fn quality_scores(&self) -> &QualityScores

Returns the quality scores.

Trait Implementations§

Source§

impl Clone for Record

Source§

fn clone(&self) -> Record

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Record

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Record

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Record

Source§

fn eq(&self, other: &Record) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Record for Record

Source§

fn name(&self) -> Option<&BStr>

Returns the name.
Source§

fn flags(&self) -> Result<Flags>

Returns the flags.
Source§

fn reference_sequence_id<'r, 'h: 'r>( &'r self, _: &'h Header, ) -> Option<Result<usize>>

Returns the reference sequence ID.
Source§

fn alignment_start(&self) -> Option<Result<Position>>

Returns the alignment start. Read more
Source§

fn mapping_quality(&self) -> Option<Result<MappingQuality>>

Returns the mapping quality.
Source§

fn cigar(&self) -> Box<dyn Cigar + '_>

Returns the CIGAR operations.
Source§

fn mate_reference_sequence_id<'r, 'h: 'r>( &'r self, _: &'h Header, ) -> Option<Result<usize>>

Returns the mate reference sequence ID.
Source§

fn mate_alignment_start(&self) -> Option<Result<Position>>

Returns the mate alignment start. Read more
Source§

fn template_length(&self) -> Result<i32>

Returns the template length.
Source§

fn sequence(&self) -> Box<dyn Sequence + '_>

Returns the sequence.
Source§

fn quality_scores(&self) -> Box<dyn QualityScores + '_>

Returns the quality scores.
Source§

fn data(&self) -> Box<dyn Data + '_>

Returns the data.
Source§

fn reference_sequence<'h>( &self, header: &'h Header, ) -> Option<Result<(&'h BStr, &'h Map<ReferenceSequence>), Error>>

Returns the associated reference sequence.
Source§

fn mate_reference_sequence<'h>( &self, header: &'h Header, ) -> Option<Result<(&'h BStr, &'h Map<ReferenceSequence>), Error>>

Returns the associated mate reference sequence.
Source§

fn alignment_span(&self) -> Option<Result<usize, Error>>

Returns the alignment span.
Source§

fn alignment_end(&self) -> Option<Result<Position, Error>>

Calculates the end position. Read more
Source§

impl StructuralPartialEq for Record

Auto Trait Implementations§

§

impl Freeze for Record

§

impl RefUnwindSafe for Record

§

impl Send for Record

§

impl Sync for Record

§

impl Unpin for Record

§

impl UnwindSafe for Record

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.