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