PairwiseSequenceAlignerTracebackIsComplete Method |
This method is used to determine when the traceback step is complete.
It is algorithm specific.
Namespace: Bio.Algorithms.AlignmentAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax protected virtual bool TracebackIsComplete(
int row,
int col
)
Protected Overridable Function TracebackIsComplete (
row As Integer,
col As Integer
) As Boolean
protected:
virtual bool TracebackIsComplete(
int row,
int col
)
abstract TracebackIsComplete :
row : int *
col : int -> bool
override TracebackIsComplete :
row : int *
col : int -> bool
Parameters
- row
- Type: SystemInt32
Current row - col
- Type: SystemInt32
Current column
Return Value
Type:
BooleanTrue if we are finished with the traceback step, false if not.
See Also