Struct fastq::OwnedRecord[][src]

pub struct OwnedRecord {
    pub head: Vec<u8>,
    pub seq: Vec<u8>,
    pub sep: Option<Vec<u8>>,
    pub qual: Vec<u8>,
}

A fastq record that ownes its data arrays.

Fields

Trait Implementations

impl Debug for OwnedRecord
[src]

Formats the value using the given formatter. Read more

impl Record for OwnedRecord
[src]

Return the id-line of the record as byte slice

Return the fastq sequence as byte slice

Return the quality of the bases as byte slice

Write the record to a writer

Return true if the sequence contains only A, C, T and G. Read more

Return true if the sequence contains only A, C, T, G and N. Read more

Auto Trait Implementations

impl Send for OwnedRecord

impl Sync for OwnedRecord