Skip to content

Commit 55aeb59

Browse files
authored
Merge pull request #160 from sidhulyalkar/main
Bugfix: rename get_image_files to get_calcium_imaging_files
2 parents d7e8004 + 7275663 commit 55aeb59

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

6+
## [0.8.1] - 2023-08-31
7+
8+
+ Fix - Rename `get_image_files` to `get_calcium_imaging_files` where missed
9+
610
## [0.8.0] - 2023-08-08
711

812
+ Update - Rename `get_image_files` to `get_calcium_imaging_files`, and update arguments
@@ -173,6 +177,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
173177
+ Add - `scan` and `imaging` modules
174178
+ Add - Readers for `ScanImage`, `ScanBox`, `Suite2p`, `CaImAn`
175179

180+
[0.8.1]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.8.1
176181
[0.8.0]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.8.0
177182
[0.7.9]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.9
178183
[0.7.8]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.8

element_calcium_imaging/imaging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def infer_output_dir(cls, key, relative=False, mkdir=False):
260260

261261
scan_dir = find_full_path(
262262
get_imaging_root_data_dir(),
263-
get_image_files(key, filetypes[acq_software])[0],
263+
get_calcium_imaging_files(key, filetypes[acq_software])[0],
264264
).parent
265265
root_dir = find_root_directory(get_imaging_root_data_dir(), scan_dir)
266266

element_calcium_imaging/imaging_no_curation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def infer_output_dir(cls, key, relative=False, mkdir=False):
260260

261261
scan_dir = find_full_path(
262262
get_imaging_root_data_dir(),
263-
get_image_files(key, filetypes[acq_software])[0],
263+
get_calcium_imaging_files(key, filetypes[acq_software])[0],
264264
).parent
265265
root_dir = find_root_directory(get_imaging_root_data_dir(), scan_dir)
266266

element_calcium_imaging/imaging_preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ def infer_output_dir(cls, key, relative=False, mkdir=False):
450450

451451
scan_dir = find_full_path(
452452
get_imaging_root_data_dir(),
453-
get_image_files(key, filetypes[acq_software])[0],
453+
get_calcium_imaging_files(key, filetypes[acq_software])[0],
454454
).parent
455455
root_dir = find_root_directory(get_imaging_root_data_dir(), scan_dir)
456456

element_calcium_imaging/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = "0.8.0"
2+
__version__ = "0.8.1"

0 commit comments

Comments
 (0)