KmersOfSequence Constructor (ISequence, Int32, HashSetKmersOfSequenceKmerPositions) |
Initializes a new instance of the KmersOfSequence class.
Takes k-mer sequence and occurring position.
Namespace: Bio.Algorithms.KmerAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public KmersOfSequence(
ISequence sequence,
int kmerLength,
HashSet<KmersOfSequenceKmerPositions> kmers
)
Public Sub New (
sequence As ISequence,
kmerLength As Integer,
kmers As HashSet(Of KmersOfSequenceKmerPositions)
)
public:
KmersOfSequence(
ISequence^ sequence,
int kmerLength,
HashSet<KmersOfSequenceKmerPositions^>^ kmers
)
new :
sequence : ISequence *
kmerLength : int *
kmers : HashSet<KmersOfSequenceKmerPositions> -> KmersOfSequence
Parameters
- sequence
- Type: BioISequence
Source sequence. - kmerLength
- Type: SystemInt32
Length of k-mer. - kmers
- Type: System.Collections.GenericHashSetKmersOfSequenceKmerPositions
Set of associated k-mers.
See Also