ez-zarr


Nameez-zarr JSON
Version 0.1.4 PyPI version JSON
download
home_page
SummaryGive easy, high-level access to ome-zarr filesets.
upload_time2024-02-08 17:40:34
maintainer
docs_urlNone
authorSilvia Barbiero, Charlotte Soneson, Michael Stadler
requires_python>=3.9
licenseMIT License Copyright (c) 2023 Friedrich Miescher Institute for Biomedical Research Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords ome_zarr image analysis fractal
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ez_zarr

## Goals
The aim of `ez_zarr` is to provide easy, high-level access
to OME-Zarr filesets (high content screening microscopy data, stored
according to the [NGFF](https://ngff.openmicroscopy.org/latest/)
specifications in OME-Zarr with additional metadata fields, for
example the ones generated by the [Fractal](https://fractal-analytics-platform.github.io/fractal-tasks-core/) platform).

The goal is that users can write simple scripts working with plates,
wells and fields of view, without having to understand how these
are represented within an OME-Zarr fileset.

## Example
You can use `ez_zarr` from the command line to get information about an OME-Zarr fileset:
```
ez_zarr tests/example_data/plate_ones.zarr
```

or from within python to get access to all its functionality:
```
# import module
from ez_zarr import hcs_wrappers

# create `plate_3d` object representing an OME-Zarr fileset
plate_3d = hcs_wrappers.FractalZarr('tests/example_data/plate_ones.zarr')

# print fileset summary
plate_3d
# FractalZarr plate_ones.zarr
#   path: tests/example_data/plate_ones.zarr
#   n_wells: 1
#   n_channels: 2 (some-label-1, some-label-2)
#   n_pyramid_levels: 3
#   pyramid_zyx_scalefactor: {'0': array([1. 2. 2.])}
#   full_resolution_zyx_spacing: [1.0, 0.1625, 0.1625]
#   segmentations: 
#   tables (measurements): FOV_ROI_table
```

A more extensive example is available from [here](https://fmicompbio.github.io/ez_zarr/quickstart/), also available as an [ipynb notebook](https://fmicompbio.github.io/ez_zarr/quickstart.ipynb).

## Install
The release version of `ez_zarr` can be installed using:
```
pip install ez-zarr
```

The current (development) `ez_zarr` can be installed from github.com using:
```
pip install git+ssh://git@github.com/fmicompbio/ez_zarr.git
```

## Software status
[![unit-tests](https://github.com/fmicompbio/ez_zarr/actions/workflows/test_and_deploy.yaml/badge.svg)](https://github.com/fmicompbio/ez_zarr/actions/workflows/test_and_deploy.yaml)
[![codecov](https://codecov.io/gh/fmicompbio/ez_zarr/graph/badge.svg?token=GEBLX8ENJ1)](https://codecov.io/gh/fmicompbio/ez_zarr)

## Contributors and License
`ez_zarr` is released under the MIT License, and the copyright
is with the Friedrich Miescher Insitute for Biomedical Research
(see [LICENSE](https://github.com/fmicompbio/ez_zarr/blob/main/LICENSE)).

`ez_zarr` is being developed at the Friedrich Miescher Institute for
Biomedical Research by [@silvbarb](https://github.com/silvbarb) and [@mbstadler](https://github.com/mbstadler).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ez-zarr",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Michael Stadler <michael.stadler@fmi.ch>",
    "keywords": "ome_zarr,image analysis,Fractal",
    "author": "Silvia Barbiero, Charlotte Soneson, Michael Stadler",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/25/cb/a36d4e7e15f90d8abe4ff2a06498d4cb2334b16ec967340cde05fe87fb6c/ez_zarr-0.1.4.tar.gz",
    "platform": null,
    "description": "# ez_zarr\n\n## Goals\nThe aim of `ez_zarr` is to provide easy, high-level access\nto OME-Zarr filesets (high content screening microscopy data, stored\naccording to the [NGFF](https://ngff.openmicroscopy.org/latest/)\nspecifications in OME-Zarr with additional metadata fields, for\nexample the ones generated by the [Fractal](https://fractal-analytics-platform.github.io/fractal-tasks-core/) platform).\n\nThe goal is that users can write simple scripts working with plates,\nwells and fields of view, without having to understand how these\nare represented within an OME-Zarr fileset.\n\n## Example\nYou can use `ez_zarr` from the command line to get information about an OME-Zarr fileset:\n```\nez_zarr tests/example_data/plate_ones.zarr\n```\n\nor from within python to get access to all its functionality:\n```\n# import module\nfrom ez_zarr import hcs_wrappers\n\n# create `plate_3d` object representing an OME-Zarr fileset\nplate_3d = hcs_wrappers.FractalZarr('tests/example_data/plate_ones.zarr')\n\n# print fileset summary\nplate_3d\n# FractalZarr plate_ones.zarr\n#   path: tests/example_data/plate_ones.zarr\n#   n_wells: 1\n#   n_channels: 2 (some-label-1, some-label-2)\n#   n_pyramid_levels: 3\n#   pyramid_zyx_scalefactor: {'0': array([1. 2. 2.])}\n#   full_resolution_zyx_spacing: [1.0, 0.1625, 0.1625]\n#   segmentations: \n#   tables (measurements): FOV_ROI_table\n```\n\nA more extensive example is available from [here](https://fmicompbio.github.io/ez_zarr/quickstart/), also available as an [ipynb notebook](https://fmicompbio.github.io/ez_zarr/quickstart.ipynb).\n\n## Install\nThe release version of `ez_zarr` can be installed using:\n```\npip install ez-zarr\n```\n\nThe current (development) `ez_zarr` can be installed from github.com using:\n```\npip install git+ssh://git@github.com/fmicompbio/ez_zarr.git\n```\n\n## Software status\n[![unit-tests](https://github.com/fmicompbio/ez_zarr/actions/workflows/test_and_deploy.yaml/badge.svg)](https://github.com/fmicompbio/ez_zarr/actions/workflows/test_and_deploy.yaml)\n[![codecov](https://codecov.io/gh/fmicompbio/ez_zarr/graph/badge.svg?token=GEBLX8ENJ1)](https://codecov.io/gh/fmicompbio/ez_zarr)\n\n## Contributors and License\n`ez_zarr` is released under the MIT License, and the copyright\nis with the Friedrich Miescher Insitute for Biomedical Research\n(see [LICENSE](https://github.com/fmicompbio/ez_zarr/blob/main/LICENSE)).\n\n`ez_zarr` is being developed at the Friedrich Miescher Institute for\nBiomedical Research by [@silvbarb](https://github.com/silvbarb) and [@mbstadler](https://github.com/mbstadler).\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Friedrich Miescher Institute for Biomedical Research  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Give easy, high-level access to ome-zarr filesets.",
    "version": "0.1.4",
    "project_urls": {
        "Documentation": "https://fmicompbio.github.io/ez_zarr/",
        "Homepage": "https://github.com/fmicompbio/ez_zarr",
        "Issues": "https://github.com/fmicompbio/ez_zarr/issues",
        "Sources": "https://github.com/fmicompbio/ez_zarr"
    },
    "split_keywords": [
        "ome_zarr",
        "image analysis",
        "fractal"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2603f8496b7d1c9eb187db386b4d854d391d0522042c9bfd848eb60a2fac12ac",
                "md5": "14a9e1894e4bf108d4367fa2036a5e08",
                "sha256": "b0d21c2a47f185386c6db32dee803307675b06d6aa61ef9fb2648eb6bb659f9b"
            },
            "downloads": -1,
            "filename": "ez_zarr-0.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "14a9e1894e4bf108d4367fa2036a5e08",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 24251,
            "upload_time": "2024-02-08T17:40:32",
            "upload_time_iso_8601": "2024-02-08T17:40:32.833913Z",
            "url": "https://files.pythonhosted.org/packages/26/03/f8496b7d1c9eb187db386b4d854d391d0522042c9bfd848eb60a2fac12ac/ez_zarr-0.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25cba36d4e7e15f90d8abe4ff2a06498d4cb2334b16ec967340cde05fe87fb6c",
                "md5": "10ab80556b609e75f0c7da5704d4be2d",
                "sha256": "e41e00bc8c317a6366df8c429e617a6d3bcd5c6094c6b6d858589a3f413d9ad0"
            },
            "downloads": -1,
            "filename": "ez_zarr-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "10ab80556b609e75f0c7da5704d4be2d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1649550,
            "upload_time": "2024-02-08T17:40:34",
            "upload_time_iso_8601": "2024-02-08T17:40:34.500550Z",
            "url": "https://files.pythonhosted.org/packages/25/cb/a36d4e7e15f90d8abe4ff2a06498d4cb2334b16ec967340cde05fe87fb6c/ez_zarr-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-08 17:40:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fmicompbio",
    "github_project": "ez_zarr",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "ez-zarr"
}
        
Elapsed time: 0.17753s