-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e695444
commit aac8ce9
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule micro-manager
updated
21 files
+33 −11 | .github/workflows/run-unit-tests.yml | |
+1 −0 | CHANGELOG.md | |
+2 −0 | examples/clean-example.sh | |
+ − | examples/parameter.hdf5 | |
+14 −0 | examples/snapshot-config.json | |
+24 −0 | examples/snapshot_postprocessing.py | |
+21 −2 | micro_manager/__init__.py | |
+117 −35 | micro_manager/config.py | |
+1 −9 | micro_manager/micro_manager.py | |
+8 −0 | micro_manager/micro_manager_base.py | |
+0 −0 | micro_manager/snapshot/__init__.py | |
+230 −0 | micro_manager/snapshot/dataset.py | |
+273 −0 | micro_manager/snapshot/snapshot.py | |
+2 −1 | pyproject.toml | |
+1 −0 | tests/unit/.gitignore | |
+ − | tests/unit/hdf_files/test_parameter.hdf5 | |
+14 −0 | tests/unit/snapshot-config.json | |
+171 −0 | tests/unit/test_hdf5_functionality.py | |
+1 −1 | tests/unit/test_micro_manager.py | |
+ − | tests/unit/test_parameter.hdf5 | |
+157 −0 | tests/unit/test_snapshot_computation.py |