[−][src]Trait debruijn::Kmer
Encapsulates a Kmer sequence with statically known K.
Required methods
fn empty() -> Self
Create a Kmer initialized to all A's
fn k() -> usize
K value for this concrete type.
fn to_u64(&self) -> u64
Return the rank of this kmer in an lexicographic ordering of all kmers E.g. 'AAAA' -> 0, 'AAAT' -> 1, etc. This will panic if K > 32.
fn from_u64(value: u64) -> Self
fn extend_left(&self, v: u8) -> Self
Add the base v
to the left side of the sequence, and remove the rightmost base
fn extend_right(&self, v: u8) -> Self
Add the base v
to the right side of the sequence, and remove the leftmost base
Provided methods
fn extend(&self, v: u8, dir: Dir) -> Self
Add the base v
to the side of sequence given by dir
, and remove a base at the opposite side
fn get_extensions(&self, exts: Exts, dir: Dir) -> Vec<Self>
Generate all the extension of this sequence given by exts
in direction Dir
fn min_rc_flip(&self) -> (Self, bool)
Return the minimum of the kmer and it's reverse complement, and a flag indicating if sequence was flipped
fn min_rc(&self) -> Self
fn is_palindrome(&self) -> bool
Test if this Kmer and it's reverse complement are the same
fn from_bytes(bytes: &[u8]) -> Self
Create a Kmer from the first K bytes of bytes
, which must be encoded as the integers 0-4.
fn from_ascii(bytes: &[u8]) -> Self
Create a Kmer from the first K bytes of bytes
, which must be encoded as ASCII letters A,C,G, or T.
fn to_string(&self) -> String
Return String containing Kmer sequence
fn kmers_from_bytes(str: &[u8]) -> Vec<Self>
Generate vector of all kmers contained in str
encoded as 0-4.
fn kmers_from_ascii(str: &[u8]) -> Vec<Self>
Generate vector of all kmers contained in str
, encoded as ASCII ACGT.
Implementors
impl<T: PrimInt + FromPrimitive + Hash + IntHelp> Kmer for IntKmer<T>
[src]
fn empty() -> Self
[src]
fn k() -> usize
[src]
fn from_u64(v: u64) -> IntKmer<T>
[src]
fn to_u64(&self) -> u64
[src]
fn extend_left(&self, v: u8) -> Self
[src]
Shift the base v into the left end of the kmer
fn extend_right(&self, v: u8) -> Self
[src]
fn extend(&self, v: u8, dir: Dir) -> Self
[src]
fn get_extensions(&self, exts: Exts, dir: Dir) -> Vec<Self>
[src]
fn min_rc_flip(&self) -> (Self, bool)
[src]
fn min_rc(&self) -> Self
[src]
fn is_palindrome(&self) -> bool
[src]
fn from_bytes(bytes: &[u8]) -> Self
[src]
fn from_ascii(bytes: &[u8]) -> Self
[src]
fn to_string(&self) -> String
[src]
fn kmers_from_bytes(str: &[u8]) -> Vec<Self>
[src]
fn kmers_from_ascii(str: &[u8]) -> Vec<Self>
[src]
impl<T: PrimInt + FromPrimitive + Hash + IntHelp, KS: KmerSize> Kmer for VarIntKmer<T, KS>
[src]
fn empty() -> Self
[src]
fn k() -> usize
[src]
fn to_u64(&self) -> u64
[src]
fn from_u64(v: u64) -> Self
[src]
fn extend_left(&self, v: u8) -> Self
[src]
Shift the base v into the left end of the kmer