├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── generate_docs.yml │ ├── run_tests_pr.yml │ ├── run_tests_push.yml │ ├── upload_to_pypi.yml │ └── upload_to_test_pypi.yml ├── .gitignore ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── coverage.svg ├── docs └── sphinx │ ├── Makefile │ ├── create_docs.sh │ ├── make.bat │ └── source │ ├── conf.py │ └── index.rst ├── ezomero ├── __init__.py ├── _ezomero.py ├── _gets.py ├── _importer.py ├── _misc.py ├── _posts.py ├── json_api.py └── rois.py ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── data ├── _vsi-ets-test-jpg2k_ │ └── stack1 │ │ └── frame_t_0.ets ├── badfile.tif ├── default-plate&plates=1.fake ├── test_pyramid.ome.tif └── vsi-ets-test-jpg2k.vsi ├── docker-compose.yml ├── test_connect.py ├── test_ezimport.py ├── test_gets.py ├── test_json_api.py ├── test_misc.py ├── test_posts.py ├── test_puts.py ├── test_rois.py └── test_users_group.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/generate_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/workflows/generate_docs.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/workflows/run_tests_pr.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/workflows/run_tests_push.yml -------------------------------------------------------------------------------- /.github/workflows/upload_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/workflows/upload_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/upload_to_test_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.github/workflows/upload_to_test_pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/README.md -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/coverage.svg -------------------------------------------------------------------------------- /docs/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/docs/sphinx/Makefile -------------------------------------------------------------------------------- /docs/sphinx/create_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/docs/sphinx/create_docs.sh -------------------------------------------------------------------------------- /docs/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/docs/sphinx/make.bat -------------------------------------------------------------------------------- /docs/sphinx/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/docs/sphinx/source/conf.py -------------------------------------------------------------------------------- /docs/sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/docs/sphinx/source/index.rst -------------------------------------------------------------------------------- /ezomero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/__init__.py -------------------------------------------------------------------------------- /ezomero/_ezomero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/_ezomero.py -------------------------------------------------------------------------------- /ezomero/_gets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/_gets.py -------------------------------------------------------------------------------- /ezomero/_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/_importer.py -------------------------------------------------------------------------------- /ezomero/_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/_misc.py -------------------------------------------------------------------------------- /ezomero/_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/_posts.py -------------------------------------------------------------------------------- /ezomero/json_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/json_api.py -------------------------------------------------------------------------------- /ezomero/rois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/ezomero/rois.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/_vsi-ets-test-jpg2k_/stack1/frame_t_0.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/data/_vsi-ets-test-jpg2k_/stack1/frame_t_0.ets -------------------------------------------------------------------------------- /tests/data/badfile.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/default-plate&plates=1.fake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/test_pyramid.ome.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/data/test_pyramid.ome.tif -------------------------------------------------------------------------------- /tests/data/vsi-ets-test-jpg2k.vsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/data/vsi-ets-test-jpg2k.vsi -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_connect.py -------------------------------------------------------------------------------- /tests/test_ezimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_ezimport.py -------------------------------------------------------------------------------- /tests/test_gets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_gets.py -------------------------------------------------------------------------------- /tests/test_json_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_json_api.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_posts.py -------------------------------------------------------------------------------- /tests/test_puts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_puts.py -------------------------------------------------------------------------------- /tests/test_rois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_rois.py -------------------------------------------------------------------------------- /tests/test_users_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/ezomero/HEAD/tests/test_users_group.py --------------------------------------------------------------------------------