pub struct AnnotationConfig {
pub upstream_distance: u64,
pub downstream_distance: u64,
pub splice_window: u64,
}Expand description
Configuration for variant annotation.
Fields§
§upstream_distance: u64Distance upstream of a gene to annotate as “Upstream” (default 5000).
downstream_distance: u64Distance downstream of a gene to annotate as “Downstream” (default 5000).
splice_window: u64Number of bases into the intron to consider as splice site (default 2).
Trait Implementations§
Source§impl Clone for AnnotationConfig
impl Clone for AnnotationConfig
Source§fn clone(&self) -> AnnotationConfig
fn clone(&self) -> AnnotationConfig
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 AnnotationConfig
impl Debug for AnnotationConfig
Auto Trait Implementations§
impl Freeze for AnnotationConfig
impl RefUnwindSafe for AnnotationConfig
impl Send for AnnotationConfig
impl Sync for AnnotationConfig
impl Unpin for AnnotationConfig
impl UnsafeUnpin for AnnotationConfig
impl UnwindSafe for AnnotationConfig
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