Skip to content

Commit

Permalink
Merge pull request #160 from sidhulyalkar/main
Browse files Browse the repository at this point in the history
Bugfix: rename get_image_files to get_calcium_imaging_files
  • Loading branch information
kabilar authored Sep 1, 2023
2 parents d7e8004 + 7275663 commit 55aeb59
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 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.8.1] - 2023-08-31

+ Fix - Rename `get_image_files` to `get_calcium_imaging_files` where missed

## [0.8.0] - 2023-08-08

+ Update - Rename `get_image_files` to `get_calcium_imaging_files`, and update arguments
Expand Down Expand Up @@ -173,6 +177,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.8.1]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.8.1
[0.8.0]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.8.0
[0.7.9]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.9
[0.7.8]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.8
Expand Down
2 changes: 1 addition & 1 deletion element_calcium_imaging/imaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def infer_output_dir(cls, key, relative=False, mkdir=False):

scan_dir = find_full_path(
get_imaging_root_data_dir(),
get_image_files(key, filetypes[acq_software])[0],
get_calcium_imaging_files(key, filetypes[acq_software])[0],
).parent
root_dir = find_root_directory(get_imaging_root_data_dir(), scan_dir)

Expand Down
2 changes: 1 addition & 1 deletion element_calcium_imaging/imaging_no_curation.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def infer_output_dir(cls, key, relative=False, mkdir=False):

scan_dir = find_full_path(
get_imaging_root_data_dir(),
get_image_files(key, filetypes[acq_software])[0],
get_calcium_imaging_files(key, filetypes[acq_software])[0],
).parent
root_dir = find_root_directory(get_imaging_root_data_dir(), scan_dir)

Expand Down
2 changes: 1 addition & 1 deletion element_calcium_imaging/imaging_preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def infer_output_dir(cls, key, relative=False, mkdir=False):

scan_dir = find_full_path(
get_imaging_root_data_dir(),
get_image_files(key, filetypes[acq_software])[0],
get_calcium_imaging_files(key, filetypes[acq_software])[0],
).parent
root_dir = find_root_directory(get_imaging_root_data_dir(), scan_dir)

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.8.0"
__version__ = "0.8.1"

0 comments on commit 55aeb59

Please sign in to comment.