entab 0.3.0-beta.2

Record-format file reader
Documentation

Entab

This is the main file parsing library and includes support for compression/ decompression, file type inference, and parsers for different file types.

Usage

To parse the IDs out of a FASTA file:

//! use std::fs::File;
//! use entab::readers::fasta::{FastaReader, FastaRecord};
//!
//! let file = File::open("./tests/data/sequence.fasta")?;
//! let mut reader = FastaReader::new(file, ())?;
//! while let Some(FastaRecord { id, .. }) = reader.next()? {
//!     println!("{}", id);
//! }

Other Parsers

Aston - Python - Agilent Chemstation & Masshunter/Thermo DXF/Inficon/etc Chromatography Toolbox - Matlab - Agilent/Thermo/NetCDF/mzXML Isoreader - R - Isodat Unfinnigan - Perl/Python - Thermo RAW

Please let me know if there are others that you find useful that should be added to this list.