pub struct InferredAssembly {
pub assembly_id: String,
pub assembly_name: String,
pub version_id: String,
pub version_string: String,
pub match_rate: f64,
pub matched_contigs: usize,
pub total_input_contigs: usize,
}Expand description
Result of inferring the base assembly for a set of contigs
Fields§
§assembly_id: StringAssembly ID (e.g., “grch38”)
assembly_name: StringAssembly name (e.g., “GRCh38”)
version_id: StringVersion ID (e.g., “grch38_p14”)
version_string: StringVersion string (e.g., “p14”)
match_rate: f64Fraction of input contigs that matched
matched_contigs: usizeNumber of contigs that matched
total_input_contigs: usizeTotal input contigs with MD5
Trait Implementations§
Source§impl Clone for InferredAssembly
impl Clone for InferredAssembly
Source§fn clone(&self) -> InferredAssembly
fn clone(&self) -> InferredAssembly
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 InferredAssembly
impl RefUnwindSafe for InferredAssembly
impl Send for InferredAssembly
impl Sync for InferredAssembly
impl Unpin for InferredAssembly
impl UnwindSafe for InferredAssembly
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