Click or drag to resize
DynamicProgrammingPairwiseAlignerJobWeightFunction Delegate
Algorith-specific weight function

Namespace: Bio.Algorithms.Alignment
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
protected delegate int WeightFunction(
	int i,
	int j,
	int Iij,
	int Dij,
	int Cij
)

Parameters

i
Type: SystemInt32
First index within the block
j
Type: SystemInt32
Second index within the block
Iij
Type: SystemInt32
Cost of Insertion
Dij
Type: SystemInt32
Cost of Deletion
Cij
Type: SystemInt32
Cost of Match

Return Value

Type: Int32
See Also