Note: the master branch contains the development for version 0.4.0. The currently stable version is on a separate branch.
This library provides readers for the the following sequence formats:
View documentation (for 0.4.0-alpha.x version)
Reads FASTA sequences from STDIN and writes them to STDOUT if their length is > 100. Otherwise it prints a message.
```rust use seq_io::fasta::{Reader,Record}; use std::io;
let mut reader = Reader::new(io::stdin()); let mut stdout = io::stdout();
while let Some(result) = reader.next() { let record = result.expect("reading error"); // determine sequence length let seqlen = record.seqlines() .fold(0, |l, seq| l + seq.len()); if seqlen > 100 { record.writewrap(&mut stdout, 80).expect("writing error"); } else { eprintln!("{} is only {} long", record.id().expect("not UTF-8"), seqlen); } } ```
Records are directly borrowing data from the internal buffered reader,
no further allocation or copying takes place.
As a consequence, the while let
construct has to be used instead of a for
loop.
seq_lines()
directly iterates over the sequence lines, whose position
is remembered by the record, again without further copying.
Note: Make sure to add lto = true
to the release profile in Cargo.toml
because calls to functions of the underlying buffered reader
(buf_redux) are not inlined otherwise.
seq_io
was inspired by fastq_rs
in many ways.The following bar chart shows the results of a few benchmarks on random sequences generated in memory (FASTA sequences either on a single line or wrapped to a width of 80).
The readers from this crate are also compared with fastq-rs and Rust-Bio parsers. The latter is only present in the "owned" section, since there is no possibility to iterate without allocating records.
More benchmarks can be found on a separate page.