├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── COPYING ├── LICENSE ├── MANIFEST.in ├── README.md ├── nd2reader ├── __init__.py ├── artificial.py ├── common.py ├── common_raw_metadata.py ├── exceptions.py ├── label_map.py ├── legacy.py ├── parser.py ├── raw_metadata.py ├── reader.py └── stitched.py ├── release.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── sphinx ├── Makefile ├── _templates │ └── layout.html ├── conf.py ├── index.rst ├── make.bat ├── nd2reader.rst └── tutorial.rst ├── test.py └── tests ├── __init__.py ├── test_artificial.py ├── test_common.py ├── test_label_map.py ├── test_legacy.py ├── test_parser.py ├── test_raw_metadata.py ├── test_reader.py └── test_version.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/README.md -------------------------------------------------------------------------------- /nd2reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/__init__.py -------------------------------------------------------------------------------- /nd2reader/artificial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/artificial.py -------------------------------------------------------------------------------- /nd2reader/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/common.py -------------------------------------------------------------------------------- /nd2reader/common_raw_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/common_raw_metadata.py -------------------------------------------------------------------------------- /nd2reader/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/exceptions.py -------------------------------------------------------------------------------- /nd2reader/label_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/label_map.py -------------------------------------------------------------------------------- /nd2reader/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/legacy.py -------------------------------------------------------------------------------- /nd2reader/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/parser.py -------------------------------------------------------------------------------- /nd2reader/raw_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/raw_metadata.py -------------------------------------------------------------------------------- /nd2reader/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/reader.py -------------------------------------------------------------------------------- /nd2reader/stitched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/nd2reader/stitched.py -------------------------------------------------------------------------------- /release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/release.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description_file = README.md 3 | 4 | [bdist_wheel] 5 | universal=1 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/setup.py -------------------------------------------------------------------------------- /sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/sphinx/Makefile -------------------------------------------------------------------------------- /sphinx/_templates/layout.html: -------------------------------------------------------------------------------- 1 | {% extends "!layout.html" %} 2 | -------------------------------------------------------------------------------- /sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/sphinx/conf.py -------------------------------------------------------------------------------- /sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/sphinx/index.rst -------------------------------------------------------------------------------- /sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/sphinx/make.bat -------------------------------------------------------------------------------- /sphinx/nd2reader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/sphinx/nd2reader.rst -------------------------------------------------------------------------------- /sphinx/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/sphinx/tutorial.rst -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/test.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_artificial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_artificial.py -------------------------------------------------------------------------------- /tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_common.py -------------------------------------------------------------------------------- /tests/test_label_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_label_map.py -------------------------------------------------------------------------------- /tests/test_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_legacy.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_raw_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_raw_metadata.py -------------------------------------------------------------------------------- /tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_reader.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Science-Tools/nd2reader/HEAD/tests/test_version.py --------------------------------------------------------------------------------