Welcome to eMZed
Develop LCMS data analysis workflows the easy way
eMZed is an open source toolbox for rapid and interactive development of LCMS data analysis workflows in Python.Example¶
import emzed
peak_map = emzed.io.load_peakmap("test.mzML")
peaks = emzed.run_feature_finder_metabo(
peak_map,
mtd_noise_threshold_int=10000,
)
emzed.gui.inspect(peaks)
For more examples, see the tutorials section and the more advanded example workflow repository.
The core packages of eMZed¶
emzedis the core library for headless environments such as servers and HPC systems. You can find its documentation including many examples at https://emzed.readthedocs.io.emzed-guiprovides interactive inspection tools for samples and peak lists. The documentation is hosted at https://emzed-gui.readthedocs.io.emzed-spyderprovides the IDE integration and development environment, with further documentation at https://emzed-spyder.readthedocs.io.