Click or drag to resize
SequenceStatistics Class
SequenceStatistics is used to keep track of the number of occurrences of each symbol within a sequence.
Inheritance Hierarchy
SystemObject
  BioSequenceStatistics

Namespace: Bio
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public class SequenceStatistics

The SequenceStatistics type exposes the following members.

Constructors
  NameDescription
Public methodSequenceStatistics
Constructs sequence statistics by iterating through a sequence.
Top
Properties
  NameDescription
Public propertyAlphabet
The alphabet used for the values in this statistics set
Public propertySymbolCounts
The set of values counted (so it can be enumerated easily)
Public propertyTotalCount
The total number of elements counted in this statistics set
Top
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

Reference