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
//! Input and output utilities.
//!
//! High-level input and output utilities for models. These utilities
//! may suffer from low-performance and excess memory usage, since
//! they require all elements to be in memory at a given time.
//!
//! If you would like to use more efficient utilities, at the expense
//! of code complexity, look at the low-level APIs re-exported in each
//! model under `db`.

#[cfg(feature = "mass_spectrometry")]
pub mod mass_spectra;

#[cfg(feature = "mass_spectrometry")]
pub mod peptide_search_matches;

#[cfg(feature = "pdb")]
pub mod pdb;

#[cfg(feature = "sra")]
pub mod sra;

#[cfg(feature = "uniprot")]
pub mod uniprot;