Skip to main content

RevComp

Trait RevComp 

Source
pub trait RevComp {
    type Output;

    // Required method
    fn revcomp(&self) -> Self::Output;
}
Expand description

Trait for types that can be reverse complemented

Required Associated Types§

Source

type Output

Output type after reverse complement

Required Methods§

Source

fn revcomp(&self) -> Self::Output

Reverse complement this value

Implementations on Foreign Types§

Source§

impl RevComp for [Nuc]

Source§

type Output = Vec<Nuc>

Source§

fn revcomp(&self) -> Self::Output

Implementors§