Sequence Constructor (IAlphabet, String, Boolean) |
Initializes a new instance of the Sequence class with specified alphabet and string sequence.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public Sequence(
IAlphabet alphabet,
string sequence,
bool validate
)
Public Sub New (
alphabet As IAlphabet,
sequence As String,
validate As Boolean
)
public:
Sequence(
IAlphabet^ alphabet,
String^ sequence,
bool validate
)
new :
alphabet : IAlphabet *
sequence : string *
validate : bool -> Sequence
Parameters
- alphabet
- Type: BioIAlphabet
Alphabet to which this class should conform. - sequence
- Type: SystemString
The sequence in string form. - 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