Click or drag to resize
ClusterBuilder Class
Clustering is a process in which individual matches are grouped in larger set called Cluster. The matches in cluster are decided based on paramters like fixed difference allowed, maximum difference allowed, minimum score and separation factor that should be satisfied. This class implements IClusterBuilder interface.
Inheritance Hierarchy
SystemObject
  Bio.Algorithms.AlignmentClusterBuilder

Namespace: Bio.Algorithms.Alignment
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public class ClusterBuilder : IClusterBuilder

The ClusterBuilder type exposes the following members.

Constructors
  NameDescription
Public methodClusterBuilder
Initializes a new instance of the ClusterBuilder class
Top
Properties
  NameDescription
Public propertyFixedSeparation
Gets or sets maximum fixed diagonal difference
Public propertyMaximumSeparation
Gets or sets maximum separation between the adjacent matches in clusters
Public propertyMinimumScore
Gets or sets minimum output score
Public propertyScoreMethod
Gets or sets the method to use while calculating score of a cluster. Default is MatchLength.
Public propertySeparationFactor
Gets or sets separation factor. Fraction equal to (diagonal difference / match separation) where higher values increase the insertion or deletion (indel) tolerance
Top
Methods
  NameDescription
Public methodBuildClusters(ListMatchExtension)
Get the Cluster from given inputs of matches. Steps are as follows: 1. Sort MUMs based on query sequence start. 2. Removing overlapping MUMs (in both sequences) and MUMs with same diagonal offset (usually adjacent) 3. Check for separation between two MUMs 4. Check the diagonal separation 5. If MUMs passes above conditions merge them in one cluster. 6. Sort MUMs using cluster id 7. Process clusters (Joining clusters)
Public methodBuildClusters(ListMatchExtension, Boolean)
Get the Cluster from given inputs of matches. Steps are as follows: 1. Sort MUMs based on query sequence start (if sortedByQuerySequenceIndex is false) 2. Removing overlapping MUMs (in both sequences) and MUMs with same diagonal offset (usually adjacent) 3. Check for separation between two MUMs 4. Check the diagonal separation 5. If MUMs passes above conditions merge them in one cluster. 6. Sort MUMs using cluster id 7. Process clusters (Joining clusters)
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 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
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also