AlphabetsCheckIsFromSameBase Method |
Verifies if two given alphabets comes from the same base alphabet.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static bool CheckIsFromSameBase(
IAlphabet alphabetA,
IAlphabet alphabetB
)
Public Shared Function CheckIsFromSameBase (
alphabetA As IAlphabet,
alphabetB As IAlphabet
) As Boolean
public:
static bool CheckIsFromSameBase(
IAlphabet^ alphabetA,
IAlphabet^ alphabetB
)
static member CheckIsFromSameBase :
alphabetA : IAlphabet *
alphabetB : IAlphabet -> bool
Parameters
- alphabetA
- Type: BioIAlphabet
First alphabet to compare. - alphabetB
- Type: BioIAlphabet
Second alphabet to compare.
Return Value
Type:
BooleanTrue if both alphabets comes from the same base class.
See Also