Click or drag to resize
PairwiseSequenceAligner Methods

The PairwiseSequenceAligner type exposes the following members.

Methods
  NameDescription
Public methodAlign(IEnumerableISequence)
Align aligns the set of input sequences using the affine gap model (gap open and gap extension penalties) and returns the best alignment found.
Public methodAlign(ISequence, ISequence)
Align aligns the set of input sequences using the affine gap model (gap open and gap extension penalties) and returns the best alignment found.
Public methodAlign(SimilarityMatrix, Int32, Int32, ISequence, ISequence)
Pairwise alignment of two sequences using an affine gap penalty. The various algorithms in derived classes (NeedlemanWunsch, SmithWaterman, and PairwiseOverlap) all use this general engine for alignment with an affine gap penalty.
Public methodAlignSimple(IEnumerableISequence)
AlignSimple aligns the set of input sequences using the linear gap model (one gap penalty), and returns the best alignment found.
Public methodAlignSimple(ISequence, ISequence)
AlignSimple aligns the set of input sequences using the linear gap model (one gap penalty), and returns the best alignment found.
Public methodAlignSimple(SimilarityMatrix, Int32, ISequence, ISequence)
Pairwise alignment of two sequences using a linear gap penalty. The various algorithms in derived classes (NeedlemanWunsch, SmithWaterman, and PairwiseOverlap) all use this general engine for alignment with a linear gap penalty.
Protected methodCreateAlignmentFromCell
This takes a specific starting location in the scoring matrix and generates an alignment from it using the traceback scores.
Protected methodCreateTracebackTable
This is step (2) in the dynamic programming model - to fill in the scoring matrix and calculate the traceback entries. This is algorithm specific and so is left as an abstract method.
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 methodInitialize
This is step (1) in the dynamic programming model - to initialize the default values for the scoring matrix and traceback tables.
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.)
Protected methodTracebackIsComplete
This method is used to determine when the traceback step is complete. It is algorithm specific.
Top
See Also