WordMatchBuildMatchTable Method |
Create a list of all the matches and order them by the
second sequence.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static List<WordMatch> BuildMatchTable(
KmersOfSequence kmerList,
ISequence seq2,
int wordLength
)
Public Shared Function BuildMatchTable (
kmerList As KmersOfSequence,
seq2 As ISequence,
wordLength As Integer
) As List(Of WordMatch)
public:
static List<WordMatch^>^ BuildMatchTable(
KmersOfSequence^ kmerList,
ISequence^ seq2,
int wordLength
)
static member BuildMatchTable :
kmerList : KmersOfSequence *
seq2 : ISequence *
wordLength : int -> List<WordMatch>
Parameters
- kmerList
- Type: Bio.Algorithms.KmerKmersOfSequence
List of kmer's. - seq2
- Type: BioISequence
Second sequence. - wordLength
- Type: SystemInt32
Wordlength entered by the user
Return Value
Type:
ListWordMatchList of all the matches.
See Also