Click or drag to resize
IKmerBuilderBuild Method (IEnumerableISequence, Int32)
Builds k-mers for a list of input sequences. For each sequence in input list, constructs a KmersOfSequence corresponding to the 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
IEnumerable<KmersOfSequence> Build(
	IEnumerable<ISequence> sequences,
	int kmerLength
)

Parameters

sequences
Type: System.Collections.GenericIEnumerableISequence
List of input sequences.
kmerLength
Type: SystemInt32
K-mer length.

Return Value

Type: IEnumerableKmersOfSequence
List of KmersOfSequence instances.
See Also