IAlphabetValidateSequence Method |
Validates if all symbols match with the specified alphabet type.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax bool ValidateSequence(
byte[] symbols,
long offset,
long length
)
Function ValidateSequence (
symbols As Byte(),
offset As Long,
length As Long
) As Boolean
bool ValidateSequence(
array<unsigned char>^ symbols,
long long offset,
long long length
)
abstract ValidateSequence :
symbols : byte[] *
offset : int64 *
length : int64 -> bool
Parameters
- symbols
- Type: SystemByte
Symbols to be validated. - offset
- Type: SystemInt64
Offset from where validation should start. - length
- Type: SystemInt64
Number of symbols to validate from the specified offset.
Return Value
Type:
BooleanTrue if the validation succeeds, else false.
See Also