Click or drag to resize
ISuffixTree Interface
This interface defines the contract to be implemented by suffix tree class.

Namespace: Bio.Algorithms.SuffixTree
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public interface ISuffixTree

The ISuffixTree type exposes the following members.

Properties
  NameDescription
Public propertyMinLengthOfMatch
Gets or sets Minimum length of match required.
Public propertyName
Gets the Name of the suffix tree.
Public propertyNoAmbiguity
Gets or sets a value indicating whether to match basic symbols only by ignoring the ambiguous symbols or not.
Public propertySequence
Gets sequence of Suffix Tree.
Top
Methods
  NameDescription
Public methodSearchMatches
Gets the matches who's length are greater than or equal to the MinLengthOfMatch.
Public methodSearchMatchesUniqueInReference
Gets the matches unique in reference sequence whos are greater than or equal to the MinLengthOfMatch.
Top
See Also