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

pub struct Record {
    // some fields omitted
}

A FastQ record.

Methods

impl Record
[src]

fn new() -> Self

Create a new, empty FastQ record.

fn is_empty(&self) -> bool

Check if record is empty.

fn check(&self) -> Result<(), &str>

Check validity of FastQ record.

fn id(&self) -> Option<&str>

Return the id of the record.

fn desc(&self) -> Option<&str>

Return descriptions if present.

fn seq(&self) -> TextSlice

Return the sequence of the record.

fn qual(&self) -> &[u8]

Return the base qualities of the record.

Trait Implementations

impl Default for Record
[src]

fn default() -> Record

Returns the "default value" for a type. Read more

impl Clone for Record
[src]

fn clone(&self) -> Record

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for Record
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for Record
[src]

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

Formats the value using the given formatter.