logo
pub trait HopParameters {
    fn prob_hop_x(&self) -> LogProb;
fn prob_hop_y(&self) -> LogProb;
fn prob_hop_x_extend(&self) -> LogProb;
fn prob_hop_y_extend(&self) -> LogProb; }
Expand description

Trait for parametrization of PairHMM hop behavior.

Required methods

Probability to start hop in x.

Probability to start hop in y.

Probability to extend hop in x.

Probability to extend hop in y.

Implementors