[][src]Struct umgap::io::fastq::Record

pub struct Record {
    pub header: String,
    pub sequence: String,
    pub quality: String,
}

A record as defined by the FASTQ format.

Fields

header: String

The FASTQ header (without the preceding '@')

sequence: String

The actual sequence of nucleotides

quality: String

The line discribing the quality of the reads. Each character is an integer representing the estimated probability of the base being incorrect.

Trait Implementations

impl Display for Record[src]

impl Debug for Record[src]

Auto Trait Implementations

impl Sync for Record

impl Send for Record

impl Unpin for Record

impl RefUnwindSafe for Record

impl UnwindSafe for Record

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]