Struct NucleotideSequence

Source
pub struct NucleotideSequence { /* private fields */ }
Expand description

BLAST database representation of a nucleotide sequence.

This representation is divided into two different parts:

  • Sequence encoding packed down to 2 bits per base. Ambiguous bases are resolved at random.
  • Description of the ranges containing ambiguous bases.

This can easily converted to and from a FASTA string:

use blastdb_sequence_util::{Ncbi8naBase, NucleotideSequence};
let fasta = "acgtACGT";
let seq: NucleotideSequence = fasta.as_bytes().iter().map(|b| Ncbi8naBase::try_from(*b)).collect::<Result<_, _>>().unwrap();
let normalized_fasta: String = seq.iter().map(|b| char::from(b)).collect();  // ACGTACGT

Implementations§

Source§

impl NucleotideSequence

Source

pub fn new(seq: Vec<u8>, amb: Vec<u8>) -> NucleotideSequence

Create a NucleotideSequence from sequence and ambiguity streams.

Source

pub fn len(&self) -> usize

Return the number of bases in the sequence.

Source

pub fn is_empty(&self) -> bool

Source

pub fn iter(&self) -> SequenceIter<'_, '_>

Iterate over Ncbi8na representation of sequence data.

Source

pub fn sequence_bytes(&self) -> &[u8]

Return the raw sequence bytes for storage.

Source

pub fn ambiguity_bytes(&self) -> &[u8]

Return the raw ambiguity bytes for storage.

Trait Implementations§

Source§

impl Display for NucleotideSequence

Render the sequence as an IUPAC nucleic acide sequence.

Source§

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

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

impl FromIterator<Ncbi8naBase> for NucleotideSequence

Source§

fn from_iter<T>(into_iter: T) -> Self
where T: IntoIterator<Item = Ncbi8naBase>,

Creates a value from an iterator. Read more
Source§

impl FromStr for NucleotideSequence

Source§

type Err = NucleotideConversionError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more

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> 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