pub enum PePolicy {
FR,
RF,
FF,
RR,
}Expand description
Paired-end orientation policy
Defines the expected orientation of mate pairs. This matches standard paired-end sequencing orientation types.
Variants§
FR
Forward-Reverse: R1 forward, R2 reverse (most common for Illumina)
RF
Reverse-Forward: R1 reverse, R2 forward
FF
Forward-Forward: both mates in forward orientation
RR
Reverse-Reverse: both mates in reverse orientation
Trait Implementations§
impl Copy for PePolicy
impl Eq for PePolicy
impl StructuralPartialEq for PePolicy
Auto Trait Implementations§
impl Freeze for PePolicy
impl RefUnwindSafe for PePolicy
impl Send for PePolicy
impl Sync for PePolicy
impl Unpin for PePolicy
impl UnsafeUnpin for PePolicy
impl UnwindSafe for PePolicy
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