pub struct AlignQuantResult {Show 15 fields
pub names: Vec<String>,
pub lengths: Vec<u32>,
pub eff_lengths: Vec<f64>,
pub tpm: Vec<f64>,
pub counts: Vec<f64>,
pub num_processed: u64,
pub num_mapped: u64,
pub num_eq_classes: usize,
pub frag_len_mean: f64,
pub frag_len_sd: f64,
pub length_classes: Vec<u32>,
pub frag_len_dist: Vec<f64>,
pub start_time: String,
pub bias_dump: BiasDump,
pub ambig: (Vec<u32>, Vec<u32>),
}Expand description
Quantification results.
Fields§
§names: Vec<String>§lengths: Vec<u32>§eff_lengths: Vec<f64>§tpm: Vec<f64>§counts: Vec<f64>§num_processed: u64§num_mapped: u64§num_eq_classes: usize§frag_len_mean: f64§frag_len_sd: f64§length_classes: Vec<u32>§frag_len_dist: Vec<f64>§start_time: String§bias_dump: BiasDump§ambig: (Vec<u32>, Vec<u32>)per-transcript (unique, ambiguous) fragment counts for ambig_info.tsv
Trait Implementations§
Source§impl Clone for AlignQuantResult
impl Clone for AlignQuantResult
Source§fn clone(&self) -> AlignQuantResult
fn clone(&self) -> AlignQuantResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlignQuantResult
impl RefUnwindSafe for AlignQuantResult
impl Send for AlignQuantResult
impl Sync for AlignQuantResult
impl Unpin for AlignQuantResult
impl UnsafeUnpin for AlignQuantResult
impl UnwindSafe for AlignQuantResult
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.