[][src]Enum varlociraptor::cli::PreprocessKind

pub enum PreprocessKind {
    Variants {
        reference: PathBuf,
        candidates: Option<PathBuf>,
        bam: PathBuf,
        alignment_properties: Option<PathBuf>,
        output: Option<PathBuf>,
        spurious_ins_rate: f64,
        spurious_del_rate: f64,
        spurious_insext_rate: f64,
        spurious_delext_rate: f64,
        protocol_strandedness: ProtocolStrandedness,
        omit_snvs: bool,
        omit_indels: bool,
        max_indel_len: u32,
        indel_window: u32,
        max_depth: usize,
    },
}

Variants

Variants

Fields of Variants

reference: PathBufcandidates: Option<PathBuf>bam: PathBufalignment_properties: Option<PathBuf>output: Option<PathBuf>spurious_ins_rate: f64spurious_del_rate: f64spurious_insext_rate: f64spurious_delext_rate: f64protocol_strandedness: ProtocolStrandednessomit_snvs: boolomit_indels: boolmax_indel_len: u32indel_window: u32max_depth: usize

Trait Implementations

impl Clone for PreprocessKind[src]

impl Debug for PreprocessKind[src]

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

impl Serialize for PreprocessKind[src]

impl StructOpt for PreprocessKind[src]

impl StructOptInternal for PreprocessKind[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,