entab

Crates.ioentab
lib.rsentab
version0.3.3
sourcesrc
created_at2020-07-07 01:48:57.407283
updated_at2024-06-28 04:39:06.920473
descriptionRecord-format file reader
homepage
repositoryhttps://github.com/bovee/entab
max_upload_size
id262150
size12,409,362
Cala (github:ardaku:cala)

documentation

README

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, None)?;
//! 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 seqio - Rust - FASTX

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

Commit count: 142

cargo fmt