Skip to content

Commit

Permalink
also require BaseSpecificHopParameters when building a new HPHMM stru…
Browse files Browse the repository at this point in the history
…ct instance (#484)
  • Loading branch information
tedil committed Feb 23, 2022
1 parent a7fb87a commit 30cb008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stats/pairhmm/homopolypairhmm.rs
Expand Up @@ -227,7 +227,7 @@ impl HomopolyPairHMM {
pub fn new<G, H>(gap_params: &G, hop_params: &H) -> Self
where
G: GapParameters,
H: HopParameters,
H: BaseSpecificHopParameters,
{
Self {
transition_probs: build_transition_table(gap_params, hop_params),
Expand Down

0 comments on commit 30cb008

Please sign in to comment.