[][src]Struct varlociraptor::model::evidence::reads::IndelGapParams

pub struct IndelGapParams {
    pub prob_insertion_artifact: LogProb,
    pub prob_deletion_artifact: LogProb,
    pub prob_insertion_extend_artifact: LogProb,
    pub prob_deletion_extend_artifact: LogProb,
}

Gap parameters for PairHMM.

Fields

prob_insertion_artifact: LogProbprob_deletion_artifact: LogProbprob_insertion_extend_artifact: LogProbprob_deletion_extend_artifact: LogProb

Trait Implementations

impl Clone for IndelGapParams[src]

impl Debug for IndelGapParams[src]

impl GapParameters for IndelGapParams[src]

impl StartEndGapParameters for IndelGapParams[src]

fn free_start_gap_x(&self) -> bool[src]

Semiglobal alignment: return true.

fn free_end_gap_x(&self) -> bool[src]

Semiglobal alignment: return true.

fn prob_start_gap_x(&self, _: usize) -> LogProb[src]

Semiglobal alignment: return 1.0.

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> 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>,