imzml 0.1.0

A library for reading the mass spectrometry (imaging) formats mzML and imzML.
Documentation

This library provides a means of accessing mass spectrometry and mass spectrometry imaging data stored in either the .mzML or .imzML data formats.

let parser = ImzMLReader::from_path("/path/to/data.imzML").unwrap();

for error in parser.errors() { println!("{:?}", error); }

let imzml: ImzML<_> = parser.into();

imzml.ion_image(772.573, 100.0);