Sequence Constructor (IAlphabet, Byte) |
Initializes a new instance of the Sequence class with specified alphabet and bytes.
Bytes representing Symbols in the values are validated with the specified alphabet.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public Sequence(
IAlphabet alphabet,
byte[] values
)
Public Sub New (
alphabet As IAlphabet,
values As Byte()
)
public:
Sequence(
IAlphabet^ alphabet,
array<unsigned char>^ values
)
new :
alphabet : IAlphabet *
values : byte[] -> Sequence
Parameters
- alphabet
- Type: BioIAlphabet
Alphabet to which this instance should conform. - values
- Type: SystemByte
An array of bytes representing the symbols.
See Also