pub struct AlignerParams {
pub max_alignments: usize,
pub seed_policy: SeedPolicy,
pub sw_params: SwParams,
pub min_score: Score,
}Expand description
Parameters for the aligner
Fields§
§max_alignments: usizeMaximum number of alignments per read
seed_policy: SeedPolicySeed policy
sw_params: SwParamsSmith-Waterman parameters
min_score: ScoreMinimum score threshold
Trait Implementations§
Source§impl Clone for AlignerParams
impl Clone for AlignerParams
Source§fn clone(&self) -> AlignerParams
fn clone(&self) -> AlignerParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AlignerParams
impl Debug for AlignerParams
Auto Trait Implementations§
impl Freeze for AlignerParams
impl RefUnwindSafe for AlignerParams
impl Send for AlignerParams
impl Sync for AlignerParams
impl Unpin for AlignerParams
impl UnsafeUnpin for AlignerParams
impl UnwindSafe for AlignerParams
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