[][src]Struct varlociraptor::estimation::alignment_properties::AlignmentProperties

pub struct AlignmentProperties { /* fields omitted */ }

Implementations

impl AlignmentProperties[src]

pub fn default(insert_size: Option<InsertSize>) -> Self[src]

Constructs a dummy instance where all bases are feasible.

pub fn update_max_cigar_ops_len(&mut self, record: &Record) -> (bool, bool)[src]

Update maximum observed cigar operation lengths. Return whether any D, I, S, or H operation was found in the cigar string.

pub fn estimate<R: Read>(bam: &mut R) -> Result<Self>[src]

Estimate AlignmentProperties from first 10000 fragments of bam file. Only reads that are mapped, not duplicates and where quality checks passed are taken.

pub fn feasible_bases(&self, read_len: u32, variant: &Variant) -> u32[src]

Number of bases that are feasible for overlapping the variant.

pub fn insert_size(&self) -> &InsertSize[src]

Trait Implementations

impl Clone for AlignmentProperties[src]

impl Copy for AlignmentProperties[src]

impl Debug for AlignmentProperties[src]

impl<'de> Deserialize<'de> for AlignmentProperties[src]

impl Serialize for AlignmentProperties[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,