Crate noodles_fastq
source ·Expand description
noodles-fastq handles the reading and writing of the FASTQ format.
FASTQ is a text format with no formal specification and only has de facto rules. It typically consists of a list of records, each with four lines: a definition (read name and description), a sequence, a plus line, and quality scores.
The read name is prefixed with an @
(at sign) character and includes an optional description,
delimited by a space. The sequence is a list of bases encoded using IUPAC base symbols. The
plus line is effectively a separator, sometimes repeating the read name and optional
description, and is commonly discarded. The quality scores is list of Phred quality scores
offset by 33 and is parallel to each base in the sequence. That is, each record can be
described like the following:
@<name>[ description]
<sequence>
+[<name>[ description]]
<quality scores>
§Examples
§Read all records from a file
use noodles_fastq as fastq;
let mut reader = File::open("sample.fq")
.map(BufReader::new)
.map(fastq::io::Reader::new)?;
for result in reader.records() {
let record = result?;
// ...
}
Re-exports§
pub use self::record::Record;
pub use self::io::index;
pub use self::io::Indexer;
pub use self::io::reader;
pub use self::io::Reader;
pub use self::async::io::Reader as AsyncReader;
pub use self::async::io::Writer as AsyncWriter;
Modules§
- Async FASTQ.
- FASTQ index (FAI) and fields.
- FASTQ I/O.
- FASTQ record.