DynamicProgrammingPairwiseAlignerJobComputeBlock Method |
Forward pass for the block.
Assumes the blocks to the top and right have already been processed.
Namespace: Bio.Algorithms.AlignmentAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax protected abstract void ComputeBlock(
DynamicProgrammingPairwiseAlignerJobWeightFunction weightFunction,
int blockRow,
int blockCol,
int lastRow,
int lastCol
)
Protected MustOverride Sub ComputeBlock (
weightFunction As DynamicProgrammingPairwiseAlignerJobWeightFunction,
blockRow As Integer,
blockCol As Integer,
lastRow As Integer,
lastCol As Integer
)
protected:
virtual void ComputeBlock(
DynamicProgrammingPairwiseAlignerJobWeightFunction^ weightFunction,
int blockRow,
int blockCol,
int lastRow,
int lastCol
) abstract
abstract ComputeBlock :
weightFunction : DynamicProgrammingPairwiseAlignerJobWeightFunction *
blockRow : int *
blockCol : int *
lastRow : int *
lastCol : int -> unit
Parameters
- weightFunction
- Type: Bio.Algorithms.AlignmentDynamicProgrammingPairwiseAlignerJobWeightFunction
[Missing <param name="weightFunction"/> documentation for "M:Bio.Algorithms.Alignment.DynamicProgrammingPairwiseAlignerJob.ComputeBlock(Bio.Algorithms.Alignment.DynamicProgrammingPairwiseAlignerJob.WeightFunction,System.Int32,System.Int32,System.Int32,System.Int32)"]
- blockRow
- Type: SystemInt32
First index of the block within the grid - blockCol
- Type: SystemInt32
Second index of the block within the grid - lastRow
- Type: SystemInt32
Last valid row index within the block; rows beyond this index stay uninitialized - lastCol
- Type: SystemInt32
Last valid column index within the block; columns beyond this index stay uninitialized
See Also