[][src]Struct varlociraptor::model::sample::RecordBuffer

pub struct RecordBuffer {
    pub window: u32,
    // some fields omitted
}

Ringbuffer of BAM records. This data structure ensures that no bam record is read twice while extracting observations for given variants.

Fields

window: u32

Methods

impl RecordBuffer[src]

pub fn new(bam: IndexedReader, window: u32, use_secondary: bool) -> Self[src]

Create a new RecordBuffer.

pub fn fill(
    &mut self,
    chrom: &[u8],
    start: u32,
    end: u32
) -> Result<(), Box<dyn Error>>
[src]

Fill buffer around the given interval.

pub fn iter(&self) -> Iter<Record>[src]

Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]