pub struct SecondaryStructurePrediction {
pub states: Vec<SecondaryStructure>,
pub helix_scores: Vec<f64>,
pub strand_scores: Vec<f64>,
pub coil_scores: Vec<f64>,
pub helix_fraction: f64,
pub strand_fraction: f64,
pub coil_fraction: f64,
}Expand description
Result of secondary structure prediction.
Fields§
§states: Vec<SecondaryStructure>Per-residue predicted state.
helix_scores: Vec<f64>Per-residue helix score.
strand_scores: Vec<f64>Per-residue strand score.
coil_scores: Vec<f64>Per-residue coil score.
helix_fraction: f64Fraction of residues predicted as helix.
strand_fraction: f64Fraction of residues predicted as strand.
coil_fraction: f64Fraction of residues predicted as coil.
Trait Implementations§
Source§impl Clone for SecondaryStructurePrediction
impl Clone for SecondaryStructurePrediction
Source§fn clone(&self) -> SecondaryStructurePrediction
fn clone(&self) -> SecondaryStructurePrediction
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 moreAuto Trait Implementations§
impl Freeze for SecondaryStructurePrediction
impl RefUnwindSafe for SecondaryStructurePrediction
impl Send for SecondaryStructurePrediction
impl Sync for SecondaryStructurePrediction
impl Unpin for SecondaryStructurePrediction
impl UnsafeUnpin for SecondaryStructurePrediction
impl UnwindSafe for SecondaryStructurePrediction
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