mzx package¶
Submodules¶
mzx.cli module¶
Module contents¶
- mzx.convert_raw_file(params: TConfig) str[source]¶
Convert the raw file to mzML format based on the vendor.
- mzx.exclusion_string(x: int) str[source]¶
Return a string representing “all positive integers except x,” using “start-end” ranges. By convention, “N-” means “N through ∞.”
- Examples:
exclude 5 → “1-4 6-” exclude 1 → “2-” exclude 2 → “1 3-” exclude 3 → “1-2 4-”