logo

Struct bio::io::fastq::Reader

source · []
pub struct Reader<B> { /* private fields */ }
Expand description

A FastQ reader.

Implementations

Read from a given file.

Read from a given io::Read.

Create a new Fastq reader given a capacity and an instance of io::Read.

Create a new Fastq reader with an object that implements io::BufReader.

Return an iterator over the records of this FastQ file.

Errors

This function will return an error if a record is incomplete or syntax is violated.

Example
use bio::io::fastq;

let fq: &'static [u8] = b"@id description\nACGT\n+\n!!!!\n";
let records = fastq::Reader::new(fq)
    .records()
    .map(|record| record.unwrap());
for record in records {
    assert!(record.check().is_ok())
}

Trait Implementations

Formats the value using the given formatter. Read more

Read the next FastQ entry into the given Record. An empty record indicates that no more records can be read.

This method is useful when you want to read records as fast as possible because it allows the reuse of a Record allocation.

A more ergonomic approach to reading FastQ records is the records iterator.

FastQ files with wrapped sequence and quality strings are allowed.

Errors

This function will return an error if the record is incomplete, syntax is violated or any form of I/O error is encountered. Additionally, if the FastQ file has line-wrapped records, and the wrapping is not consistent between the sequence and quality string for a record, parsing will fail.

Example
use bio::io::fastq::Record;
use bio::io::fastq::{FastqRead, Reader};
const FASTQ_FILE: &'static [u8] = b"@id desc
AAAA
+
IIII
";
let mut reader = Reader::new(FASTQ_FILE);
let mut record = Record::new();

reader.read(&mut record).unwrap();

assert_eq!(record.id(), "id");
assert_eq!(record.desc().unwrap(), "desc");
assert_eq!(record.seq().to_vec(), b"AAAA");
assert_eq!(record.qual().to_vec(), b"IIII");

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.