Registry / other / seq-io

seq-io

JSON →
library0.3.4rscratesunverified

Fast FASTA and FASTQ readers.

# Cargo.toml [dependencies] seq_io = "0.3.4"
INSTALL
IMPORT
SIG · SEQ-IO
S
seq-io
otherrustv0.3.4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Reader
use seq_io::fasta::Reader;

Read a FASTA file and print sequences.

use seq_io::fasta::Reader; use std::io::Cursor; fn main() { let data = b">seq1\nATCG\n"; let mut reader = Reader::new(Cursor::new(data)); while let Some(record) = reader.next() { let rec = record.unwrap(); println!("Seq: {}", std::str::from_utf8(rec.seq()).unwrap()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.3.4latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
seq-io — cargo add seq-io · libregistry