opentfraw 1.0.2

Rust parser for Thermo Fisher RAW mass spectrometry files.
Documentation
mod error;
mod reader;
mod types;

pub mod audit_tag;
pub mod device;
pub mod error_log;
pub mod generic_data;
pub mod header;
pub mod mzml;
pub mod raw_file_info;
pub mod run_header;
pub mod sample_info;
pub mod scan_data;
pub mod scan_event;
pub mod scan_filter;
pub mod scan_format;
pub mod scan_index;
pub mod seq_row;

pub use device::{DetectedInstrument, DeviceFamily};
pub use error::{Error, Result};
pub use mzml::{write_indexed_mzml, write_mzml};
pub use reader::{ControllerInfo, ControllerType, RawFileReader, ScanParams, StatusLogEntry};
pub use scan_format::ScanDataFormat;
pub use types::*;