Click or drag to resize
SequenceToKmerBuilderBuildKmerDictionary Method (ISequence, Int32)
For input sequence, constructs k-mers by sliding a frame of size kmerLength along the input sequence. Track positions of occurance for each kmer in sequence. Constructs KmersOfSequence for sequence and associated k-mers.

Namespace: Bio.Algorithms.Kmer
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public static KmerPositionDictionary BuildKmerDictionary(
	ISequence sequence,
	int kmerLength
)

Parameters

sequence
Type: BioISequence
Input sequence.
kmerLength
Type: SystemInt32
K-mer length.

Return Value

Type: KmerPositionDictionary
KmersOfSequence constructed from sequence and associated k-mers.
See Also