Click or drag to resize
SequenceStatistics Methods

The SequenceStatistics type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetCount(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')
Public methodGetCount(Char)
Gets the number of occurrences of a specific symbol. 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')
Public methodGetFraction(Byte)
Gets the fraction of occurrences of a 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 GetFraction('G') + GetFraction('C') + GetFraction('S')
Public methodGetFraction(Char)
Gets the fraction of occurrences of a specific symbol. 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 GetFraction('G') + GetFraction('C') + GetFraction('S')
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Converts the sequence chars with its count to string.
(Overrides ObjectToString.)
Top
See Also