[][src]Struct varlociraptor::estimation::alignment_properties::InsertSize

pub struct InsertSize {
    pub mean: f64,
    pub sd: f64,
}

Expected insert size in terms of mean and standard deviation. This should be estimated from unsorted(!) bam files to avoid positional biases.

Fields

mean: f64sd: f64

Methods

impl InsertSize[src]

pub fn from_samtools_stats<R: Read>(
    samtools_stats: &mut R
) -> Result<InsertSize, Box<dyn Error>>
[src]

Obtain insert size from samtools stats output.

Trait Implementations

impl Default for InsertSize[src]

impl Clone for InsertSize[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for InsertSize[src]

impl Debug for InsertSize[src]

impl Serialize for InsertSize[src]

impl<'de> Deserialize<'de> for InsertSize[src]

Auto Trait Implementations

impl Send for InsertSize

impl Sync for InsertSize

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]