pub struct GroupConfig {Show 18 fields
pub method: DedupMethod,
pub ignore_umi: bool,
pub umi_separator: u8,
pub random_seed: u64,
pub out_sam: bool,
pub output_bam: bool,
pub no_sort_output: bool,
pub chrom: Option<String>,
pub group_out: Option<String>,
pub edit_distance_threshold: u32,
pub subset: Option<f32>,
pub per_gene: bool,
pub gene_tag: Option<String>,
pub skip_tags_regex: Option<String>,
pub per_contig: bool,
pub paired: bool,
pub chimeric_pairs: ChimericPairs,
pub unmapped_handling: UnmappedHandling,
}Fields§
§method: DedupMethod§ignore_umi: bool§umi_separator: u8§random_seed: u64§out_sam: bool§output_bam: bool§no_sort_output: bool§chrom: Option<String>§group_out: Option<String>§edit_distance_threshold: u32§subset: Option<f32>§per_gene: bool§gene_tag: Option<String>§per_contig: bool§paired: bool§chimeric_pairs: ChimericPairs§unmapped_handling: UnmappedHandlingAuto Trait Implementations§
impl Freeze for GroupConfig
impl RefUnwindSafe for GroupConfig
impl Send for GroupConfig
impl Sync for GroupConfig
impl Unpin for GroupConfig
impl UnsafeUnpin for GroupConfig
impl UnwindSafe for GroupConfig
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