Skip to content

Commit

Permalink
Merge pull request #16 from jlab/fix_transmembrane
Browse files Browse the repository at this point in the history
avoid use of undefined "emission"
  • Loading branch information
sjanssen2 authored May 29, 2024
2 parents 004594b + 6a4dae2 commit 7c3bd86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hmm_transmembrane.gap
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ algebra alg_viterbi implements sig_transmembrane(alphabet=char, answer=float) {
return transition * emission * x;
}
float transitionend(float transition, float x) {
return transition * emission * x;
return transition * x;
}
float emission(float emission, char a) {
return emission;
Expand Down

0 comments on commit 7c3bd86

Please sign in to comment.