Click or drag to resize
IKmerBuilder Interface
This interface defines contract for classes that implement construction of k-mer sequences from input sequences. It provides methods that take input sequence(s) and construct corresponding k-mers.

Namespace: Bio.Algorithms.Kmer
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public interface IKmerBuilder
Methods
  NameDescription
Public methodBuild(ISequence, Int32)
Builds k-mers for input sequence and constructs KmersOfSequence corresponding to the sequence and associated k-mers.
Public methodBuild(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.
Top
See Also