Metadata-Version: 2.1
Name: omexml-dls
Version: 1.0.0
Summary: Package for simple and consistent creation and parsing of OME metadata for B24 of Diamond Light Source Ltd.
Home-page: https://github.com/DiamondLightSource/python-omexml-dls
Author: Thomas M Fish
Author-email: thomas.fish@diamond.ac.uk
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=2.7
Description-Content-Type: text/markdown
Requires-Dist: future
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# omexml-dls
[Repository](https://github.com/DiamondLightSource/python-omexml-dls)

Package to help simply and consistently create and parse OME metadata for B24 of Diamond Light Source Ltd. This is 
a modified copy of [python_bioformats](https://github.com/CellProfiler/python-bioformats)' omexml.py and tests. This package extends capabilities, predominantly in 
terms of ROIs, while offering a light-weight distribution of the omexml file.

#### Recommended import:
`from oxdls import OMEXML`

## Current changes (compared to python-bioformats)
* TiffData - this allows IFDs to be defined (created using def `set_tiffdata_count(value)`)
* `set_` and `get_ExposureTime()` functions have been added
* X, Y, Z units have been added for each plane
* Square ROIs (an roiref must be created for each ROI first, then ROIs are created using `set_roi_count(value)`, then for each ROI: ROI > Union > Rectangle, where ROI parameters can be set)
* Small formatting changes to improve consistency

