IAlphabetTryGetBasicSymbols Method |
Gets the set of basic symbols for the specified ambiguous symbol.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax bool TryGetBasicSymbols(
byte ambiguousSymbol,
out HashSet<byte> basicSymbols
)
Function TryGetBasicSymbols (
ambiguousSymbol As Byte,
<OutAttribute> ByRef basicSymbols As HashSet(Of Byte)
) As Boolean
bool TryGetBasicSymbols(
unsigned char ambiguousSymbol,
[OutAttribute] HashSet<unsigned char>^% basicSymbols
)
abstract TryGetBasicSymbols :
ambiguousSymbol : byte *
basicSymbols : HashSet<byte> byref -> bool
Parameters
- ambiguousSymbol
- Type: SystemByte
Ambiguous symbol for which the basic symbols is required. - basicSymbols
- Type: System.Collections.GenericHashSetByte
Set of basic symbols belongs to the specified ambiguous symbol.
Return Value
Type:
BooleanReturns true if the basic symbols are found and returned in basicSymbols parameter, else returns false.
See Also