SequenceStatisticsGetCount Method (Byte) |
Gets the number of occurrences of the specific sequence char. This method does not perform
any calculations to group counts of ambiguous symbols with corresponding unambiguous
symbols. So the minimum G-C content of a DNA sequence would be calculated as
GetCount('G') + GetCount('C') + GetCount('S')
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public long GetCount(
byte item
)
Public Function GetCount (
item As Byte
) As Long
public:
long long GetCount(
unsigned char item
)
member GetCount :
item : byte -> int64
Parameters
- item
- Type: SystemByte
A byte of sequence.
Return Value
Type:
Int64The number of occurrences of the given a byte of sequence.
See Also