[][src]Struct bio::alphabets::RankTransform

pub struct RankTransform {
    pub ranks: SymbolRanks,
}

Tools based on transforming the alphabet symbols to their lexicographical ranks.

Fields

ranks: SymbolRanks

Methods

impl RankTransform[src]

pub fn new(alphabet: &Alphabet) -> Self[src]

Construct a new RankTransform.

pub fn get(&self, a: u8) -> u8[src]

Get the rank of symbol a.

pub fn transform<C, T>(&self, text: T) -> Vec<u8> where
    C: Borrow<u8>,
    T: IntoIterator<Item = C>, 
[src]

Transform a given text.

Important traits for QGrams<'a, C, T>
pub fn qgrams<C, T>(&self, q: u32, text: T) -> QGrams<C, T::IntoIter> where
    C: Borrow<u8>,
    T: IntoIterator<Item = C>, 
[src]

Iterate over q-grams (substrings of length q) of given text. The q-grams are encoded as usize by storing the symbol ranks in log2(|A|) bits (with |A| being the alphabet size).

If q is larger than usize::BITS / log2(|A|), this method fails with an assertion.

pub fn alphabet(&self) -> Alphabet[src]

Restore alphabet from transform.

Trait Implementations

impl Serialize for RankTransform[src]

impl<'de> Deserialize<'de> for RankTransform[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]