Sequence Constructor (IAlphabet, Byte, Boolean) |
Initializes a new instance of the Sequence class with specified alphabet and bytes.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public Sequence(
IAlphabet alphabet,
byte[] values,
bool validate
)
Public Sub New (
alphabet As IAlphabet,
values As Byte(),
validate As Boolean
)
public:
Sequence(
IAlphabet^ alphabet,
array<unsigned char>^ values,
bool validate
)
new :
alphabet : IAlphabet *
values : byte[] *
validate : bool -> Sequence
Parameters
- alphabet
- Type: BioIAlphabet
Alphabet to which this instance should conform. - values
- Type: SystemByte
An array of bytes representing the symbols. - validate
- Type: SystemBoolean
If this flag is true then validation will be done to see whether the data is valid or not,
else validation will be skipped.
See Also