SequenceToKmerBuilderBuildKmerDictionary Method (IListISequence, Int32) |
Builds k-mers from a list of given input sequences.
For each sequence in input list, constructs a KmersOfSequence
corresponding to the sequence and associated k-mers.
Namespace: Bio.Algorithms.KmerAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static KmerIndexerDictionary BuildKmerDictionary(
IList<ISequence> sequences,
int kmerLength
)
Public Shared Function BuildKmerDictionary (
sequences As IList(Of ISequence),
kmerLength As Integer
) As KmerIndexerDictionary
public:
static KmerIndexerDictionary^ BuildKmerDictionary(
IList<ISequence^>^ sequences,
int kmerLength
)
static member BuildKmerDictionary :
sequences : IList<ISequence> *
kmerLength : int -> KmerIndexerDictionary
Parameters
- sequences
- Type: System.Collections.GenericIListISequence
List of input sequences. - kmerLength
- Type: SystemInt32
K-mer length.
Return Value
Type:
KmerIndexerDictionaryList of KmersOfSequence instances.
See Also