Skip to main content

DedupConfig

Struct DedupConfig 

Source
pub struct DedupConfig {
Show 17 fields pub method: DedupMethod, pub ignore_umi: bool, pub umi_separator: u8, pub random_seed: u64, pub out_sam: bool, pub chrom: Option<String>, pub edit_distance_threshold: u32, pub subset: Option<f32>, pub extract_umi_method: String, pub umi_tag: Option<String>, pub per_gene: bool, pub gene_tag: Option<String>, pub skip_tags_regex: Option<String>, pub output_stats: Option<String>, pub paired: bool, pub ignore_tlen: bool, pub umi_whitelist: Option<HashSet<Vec<u8>>>,
}

Fields§

§method: DedupMethod§ignore_umi: bool§umi_separator: u8§random_seed: u64§out_sam: bool§chrom: Option<String>§edit_distance_threshold: u32§subset: Option<f32>§extract_umi_method: String§umi_tag: Option<String>§per_gene: bool§gene_tag: Option<String>§skip_tags_regex: Option<String>§output_stats: Option<String>§paired: bool§ignore_tlen: bool§umi_whitelist: Option<HashSet<Vec<u8>>>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.