Package org.biojava.bio.dp
Class BackPointer
java.lang.Object
org.biojava.bio.dp.BackPointer
A backpointer.
This is used to facilitate traceback after the Viterbi computation.
- Author:
- Matthew Pocock
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal BackPointer
The previous backpointer (towards origin of DP matrix) in traceback.final double
The score of this element of the DP matrix.final State
The state with which this backpointer is associated. -
Constructor Summary
ConstructorsConstructorDescriptionBackPointer
(State s) BackPointer
(State state, BackPointer back, double score) -
Method Summary
-
Field Details
-
state
The state with which this backpointer is associated. -
back
The previous backpointer (towards origin of DP matrix) in traceback. -
score
The score of this element of the DP matrix.
-
-
Constructor Details
-
BackPointer
-
BackPointer
-