Skip to content

Commit

Permalink
Fix typo in _foward_recursion method name.
Browse files Browse the repository at this point in the history
This breaks backwards compatibility. However, the function is not implemented
in class AbstractDPAlgorithms and none of the deriving classes in Biopython
implement it either.  Considering this, the impact should be small.
  • Loading branch information
cbrueffer authored and peterjc committed Nov 26, 2012
1 parent 51f2d31 commit f690cbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bio/HMM/DynamicProgramming.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, markov_model, sequence):
self._mm = markov_model
self._seq = sequence

def _foward_recursion(self, cur_state, sequence_pos, forward_vars):
def _forward_recursion(self, cur_state, sequence_pos, forward_vars):
"""Calculate the forward recursion value.
"""
raise NotImplementedError("Subclasses must implement")
Expand Down

0 comments on commit f690cbc

Please sign in to comment.