pub struct RNAMFEFolder {
pub unpaired_penalty: f64,
pub pair_bonus: f64,
}Expand description
An RNA secondary structure folder using the Nussinov maximum base-pair algorithm as a proxy for minimum free energy (MFE) folding.
Fields§
§unpaired_penalty: f64Penalty per unpaired base (negative = energetically unfavourable).
pair_bonus: f64Energy bonus per base pair.
Implementations§
Trait Implementations§
Source§impl Clone for RNAMFEFolder
impl Clone for RNAMFEFolder
Source§fn clone(&self) -> RNAMFEFolder
fn clone(&self) -> RNAMFEFolder
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 RNAMFEFolder
impl Debug for RNAMFEFolder
Auto Trait Implementations§
impl Freeze for RNAMFEFolder
impl RefUnwindSafe for RNAMFEFolder
impl Send for RNAMFEFolder
impl Sync for RNAMFEFolder
impl Unpin for RNAMFEFolder
impl UnsafeUnpin for RNAMFEFolder
impl UnwindSafe for RNAMFEFolder
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