Click or drag to resize
DiagonalSimilarityMatrix Constructor
Initializes a new instance of the DiagonalSimilarityMatrix class. Creates a SimilarityMatrix with one value for match and one for mis-match.

Namespace: Bio.SimilarityMatrices
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public DiagonalSimilarityMatrix(
	int matchValue,
	int mismatchValue
)

Parameters

matchValue
Type: SystemInt32
Diagonal score for (col == row).
mismatchValue
Type: SystemInt32
Off-diagonal score for (col != row).
See Also