Skip to content

Commit

Permalink
Merge pull request #155 from kushalbakshi/main
Browse files Browse the repository at this point in the history
Update import statement for prairie_view_loader
  • Loading branch information
kabilar authored Jul 27, 2023
2 parents 536ad3a + f2084f2 commit 7217598
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.7.8] - 2023-07-23

+ Update - import statement for `prairie_view_loader` in `scan.py`

## [0.7.7] - 2023-07-13

+ Add - Environment variables for the Python version in the Dev Container
Expand Down Expand Up @@ -156,6 +160,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
+ Add - `scan` and `imaging` modules
+ Add - Readers for `ScanImage`, `ScanBox`, `Suite2p`, `CaImAn`

[0.7.8]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.8
[0.7.7]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.7
[0.7.6]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.6
[0.7.5]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.5
Expand Down
6 changes: 4 additions & 2 deletions element_calcium_imaging/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,10 +517,12 @@ def estimate_nd2_scan_duration(nd2_scan_obj):
]
)
elif acq_software == "PrairieView":
from element_interface import prairieviewreader
from element_interface import prairie_view_loader

scan_filepaths = get_image_files(key, "*.tif")
PVScan_info = prairieviewreader.get_pv_metadata(scan_filepaths[0])
PVScan_info = prairie_view_loader.get_prairieview_metadata(
scan_filepaths[0]
)
self.insert1(
dict(
key,
Expand Down
2 changes: 1 addition & 1 deletion element_calcium_imaging/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = "0.7.7"
__version__ = "0.7.8"

0 comments on commit 7217598

Please sign in to comment.