openwraw 1.0.4

Rust reader for Waters MassLynx RAW mass spectrometry directories.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod mzml;
pub mod raw;
pub mod reader;

pub use reader::{DecodedScan, DecodedSpectrum, Encoding, FunctionEntry, Reader};

#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("I/O error: {0}")]
    Io(#[from] std::io::Error),
    #[error("parse error: {0}")]
    Parse(String),
}

pub type Result<T> = std::result::Result<T, Error>;