Skip to content

Commit

Permalink
Merge pull request #163 from ttngu207/per-plane-processing
Browse files Browse the repository at this point in the history
pull from upsteam main
  • Loading branch information
sidhulyalkar authored Sep 5, 2023
2 parents 40ac3c2 + 328393a commit 8e9178e
Show file tree
Hide file tree
Showing 4 changed files with 8 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.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

0 comments on commit 8e9178e

Please sign in to comment.