Click or drag to resize
SmithWatermanAligner Methods

The SmithWatermanAligner 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.
(Inherited from PairwiseSequenceAligner.)
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.
(Inherited from PairwiseSequenceAligner.)
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.
(Inherited from PairwiseSequenceAligner.)
Public methodAlignSimple(IEnumerableISequence)
AlignSimple aligns the set of input sequences using the linear gap model (one gap penalty), and returns the best alignment found.
(Inherited from PairwiseSequenceAligner.)
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.
(Inherited from PairwiseSequenceAligner.)
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.
(Inherited from PairwiseSequenceAligner.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(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.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also