RnaAlphabetValidateSequence Method |
Validates if all symbols provided are RNA symbols or not.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool ValidateSequence(
byte[] symbols,
long offset,
long length
)
Public Function ValidateSequence (
symbols As Byte(),
offset As Long,
length As Long
) As Boolean
public:
virtual bool ValidateSequence(
array<unsigned char>^ symbols,
long long offset,
long long length
) sealed
abstract ValidateSequence :
symbols : byte[] *
offset : int64 *
length : int64 -> bool
override 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.
Implements
IAlphabetValidateSequence(Byte, Int64, Int64)See Also