Skip to content

Quick Start

import emzed

# inspect a table or peakmap
emzed.gui.inspect(table)

# file and message dialogs
path = emzed.gui.ask_for_single_file(extensions=["mzXML", "mzML"])
emzed.gui.show_information("Done.")

# build a custom parameter dialog
result = (
    emzed.gui.DialogBuilder("Parameters")
    .add_float("m/z tolerance (ppm)", default=5.0)
    .add_bool("Include blanks", default=False)
    .show()
)

See the individual pages for full API details. For emzed itself, refer to the emzed documentation.