Click or drag to resize
DynamicProgrammingPairwiseAlignerAlignSimple Method (IEnumerableISequence)
Aligns two sequences using a linear gap parameter, using existing gap open cost and similarity matrix. Set these using GapOpenCost and SimilarityMatrix properties before calling this method.

Namespace: Bio.Algorithms.Alignment
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public IList<IPairwiseSequenceAlignment> AlignSimple(
	IEnumerable<ISequence> inputSequences
)

Parameters

inputSequences
Type: System.Collections.GenericIEnumerableISequence
List of sequences to align. Must contain exactly two sequences.

Return Value

Type: IListIPairwiseSequenceAlignment
A list of sequence alignments.
See Also