KMer.this

Construct from sequence. Takes bases from the provided sequence until K symbols 'A/C/G/T' are found. That is, 'N' and other ambiguous bases are skipped.

If sequence does not contain at least K bases 'A/C/G/T', the result of operation is undefined.

  1. this(S id)
  2. this(S sequence)
    struct KMer(uint K)
    this
    (
    S
    )
    if (
    isInputRange!S
    )
    if (
    K <= 32
    )

Meta