Click or drag to resize
NeedlemanWunschAligner Class
Implements the NeedlemanWunsch algorithm for global alignment. See Chapter 2 in Biological Sequence Analysis; Durbin, Eddy, Krogh and Mitchison; Cambridge Press; 1998.
Inheritance Hierarchy

Namespace: Bio.Algorithms.Alignment
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public sealed class NeedlemanWunschAligner : PairwiseSequenceAligner

The NeedlemanWunschAligner type exposes the following members.

Constructors
  NameDescription
Public methodNeedlemanWunschAligner
Initializes a new instance of the NeedlemanWunschAligner class
Top
Properties
  NameDescription
Public propertyConsensusResolver
Gets or sets the object that will be used to compute the alignment's consensus.
(Inherited from PairwiseSequenceAligner.)
Public propertyDescription
Gets the description of the NeedlemanWunsch algorithm used. This is a overridden property from the abstract parent. This property returns a simple description of what NeedlemanWunschAligner class implements.
(Overrides PairwiseSequenceAlignerDescription.)
Public propertyGapExtensionCost
Gets or sets value of GapExtensionCost The GapExtensionCost is the cost of extending an already existing gap. This is only used in the affine gap model
(Inherited from PairwiseSequenceAligner.)
Public propertyGapOpenCost
Gets or sets value of GapOpenCost The GapOpenCost is the cost of inserting a gap character into a sequence.
(Inherited from PairwiseSequenceAligner.)
Public propertyIncludeScoreTable
True to include the score table and matrix as part of the output. This is placed into the Metadata for the alignment. It is turned off by default due to the expense of generating it.
(Inherited from PairwiseSequenceAligner.)
Public propertyName
Gets the name of the current Alignment algorithm used. This is a overridden property from the abstract parent. This property returns the Name of our algorithm i.e Needleman-Wunsch algorithm.
(Overrides PairwiseSequenceAlignerName.)
Public propertySimilarityMatrix
Gets or sets value of similarity matrix The similarity matrix determines the score for any possible pair of symbols that are encountered at a common location across the sequences being aligned.
(Inherited from PairwiseSequenceAligner.)
Top
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