pub enum Suggestion {
RenameContigs {
command_hint: String,
},
ReorderContigs {
command_hint: String,
},
ReplaceContig {
contig_name: String,
reason: String,
source: String,
},
UseAsIs {
warnings: Vec<String>,
},
Realign {
reason: String,
suggested_reference: String,
},
}Variants§
RenameContigs
Rename contigs using fgbio or similar
ReorderContigs
Reorder contigs to match reference
ReplaceContig
Replace a specific contig (e.g., mito)
UseAsIs
Reference is a close match, safe to use
Realign
Need to realign with different reference
Trait Implementations§
Source§impl Clone for Suggestion
impl Clone for Suggestion
Source§fn clone(&self) -> Suggestion
fn clone(&self) -> Suggestion
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 moreAuto Trait Implementations§
impl Freeze for Suggestion
impl RefUnwindSafe for Suggestion
impl Send for Suggestion
impl Sync for Suggestion
impl Unpin for Suggestion
impl UnwindSafe for Suggestion
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