Expand description
A vector of Stat.
Tuple Fields
0: Vec<Stat>Implementations
sourceimpl Stats
impl Stats
sourcepub fn print_tabular(&self)
pub fn print_tabular(&self)
Print tabular form of Stats to STDOUT.
sourcepub fn extract_organelle(
&mut self,
size_lower: usize,
size_upper: usize,
gc_lower: f32,
gc_upper: f32
) -> Result<Vec<usize>>
pub fn extract_organelle(
&mut self,
size_lower: usize,
size_upper: usize,
gc_lower: f32,
gc_upper: f32
) -> Result<Vec<usize>>
Extract the putative mitochondrial/chloroplast genome from a GFA file.
The upper and lower limits of genome size and GC content are supplied through the CLI. As the defaults will be different, the same function is accessed entry points in the CLI.
Auto Trait Implementations
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more