Sequence

Struct Sequence 

Source
pub struct Sequence {
    pub name: String,
    pub details: Option<String>,
    pub length: usize,
    pub digital_bytes: Vec<u8>,
    pub utf8_bytes: Vec<u8>,
}
Expand description

This holds the both the “digital” data and string data of a biological sequence.

Fields§

§name: String

The name of the sequence

§details: Option<String>

The sequence details. If the sequence comes from a fasta, this is the information following the sequence name in the header

§length: usize

The length of the sequence

§digital_bytes: Vec<u8>

The “digital” data of the sequence. These are the string bytes, but mapped to [0u8..25u8]

§utf8_bytes: Vec<u8>

The string data of the sequence. These are the UTF8 bytes that make up the sequence in the “normal” alphabet

Implementations§

Source§

impl Sequence

Source

pub fn random_amino(length: usize, rng: &mut Lcg128Xsl64) -> Self

Source

pub fn amino_from_fasta<P: AsRef<Path>>(path: P) -> Result<Vec<Self>>

Source

pub fn from_digital(bytes: &[u8]) -> Result<Self>

Source

pub fn from_utf8(bytes: &[u8]) -> Result<Self>

Trait Implementations§

Source§

impl Debug for Sequence

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Sequence

Source§

fn default() -> Sequence

Returns the “default value” for a type. Read more
Source§

impl Display for Sequence

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Sequence

Source§

fn eq(&self, other: &Sequence) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Sequence

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Print for T
where T: Display + Debug,

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V