bdb 0.0.1

Efficient APIs to parse from and export to file formats commonly used in biology, for both proteomics and genetics workflows.
Documentation
//! Re-exports for low-level, efficient APIs.
//!
//! In order for high-performance processing of large documents,
//! We must use parsers that lazily read and write items to and from
//! documents. The writers accept both by-value and by-reference
//! iterators, allowing you to easily chain lazy readers and writers
//! to convert between export formats.
//!
//! The memory footprint of these lazy low-level functions is minimal,
//! typically < 16 KB required for internal buffers, and < 1 KB for each
//! individual item.

#[cfg(feature = "csv")]
pub use super::csv::*;

#[cfg(feature = "fasta")]
pub use super::fasta::*;

#[cfg(feature = "xml")]
pub use super::xml::*;

pub use super::re::*;