pub enum MissingContigHandling {
Warn,
Strict,
Silent,
}Expand description
How to handle references that have contigs missing from their FASTA (e.g., CHM13 where MT is in assembly report but uses standard rCRS mitochondria)
Variants§
Warn
Show warnings when query has contigs that match a reference’s missing contigs
Strict
Treat missing contigs as errors that lower match confidence
Silent
Don’t mention missing contigs at all
Trait Implementations§
Source§impl Clone for MissingContigHandling
impl Clone for MissingContigHandling
Source§fn clone(&self) -> MissingContigHandling
fn clone(&self) -> MissingContigHandling
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MissingContigHandling
impl Debug for MissingContigHandling
Source§impl Default for MissingContigHandling
impl Default for MissingContigHandling
Source§fn default() -> MissingContigHandling
fn default() -> MissingContigHandling
Returns the “default value” for a type. Read more
Source§impl ValueEnum for MissingContigHandling
impl ValueEnum for MissingContigHandling
impl Copy for MissingContigHandling
Auto Trait Implementations§
impl Freeze for MissingContigHandling
impl RefUnwindSafe for MissingContigHandling
impl Send for MissingContigHandling
impl Sync for MissingContigHandling
impl Unpin for MissingContigHandling
impl UnwindSafe for MissingContigHandling
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more