diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cede632..a35a03c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/element_calcium_imaging/imaging.py b/element_calcium_imaging/imaging.py index 28f5034f..3953a6fe 100644 --- a/element_calcium_imaging/imaging.py +++ b/element_calcium_imaging/imaging.py @@ -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) diff --git a/element_calcium_imaging/imaging_no_curation.py b/element_calcium_imaging/imaging_no_curation.py index 814c20f3..cb21db29 100644 --- a/element_calcium_imaging/imaging_no_curation.py +++ b/element_calcium_imaging/imaging_no_curation.py @@ -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) diff --git a/element_calcium_imaging/imaging_preprocess.py b/element_calcium_imaging/imaging_preprocess.py index 32f682b8..f9973203 100644 --- a/element_calcium_imaging/imaging_preprocess.py +++ b/element_calcium_imaging/imaging_preprocess.py @@ -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) diff --git a/element_calcium_imaging/version.py b/element_calcium_imaging/version.py index de2c353f..f53466cb 100644 --- a/element_calcium_imaging/version.py +++ b/element_calcium_imaging/version.py @@ -1,2 +1,2 @@ """Package metadata.""" -__version__ = "0.8.0" +__version__ = "0.8.1"