Skip to content

Commit

Permalink
Merge pull request #196 from MilagrosMarin/main
Browse files Browse the repository at this point in the history
Improve plotting in tutorial and minor updates to standardize with other Elements
  • Loading branch information
ttngu207 authored Jun 20, 2024
2 parents c8805a5 + 364fa19 commit 8b1b248
Show file tree
Hide file tree
Showing 7 changed files with 1,095 additions and 158 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
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.10.1] - 2024-06-20

+ Fix - cleaner plotting in tutorial notebook
+ Update - markdown typos and add links in tutorial notebook
+ Update - from `dj.Schema()` to `dj.schema()` to increase consistency with other Elements

## [0.10.0] - 2024-04-09

+ Add - ROI mask creation widget
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 @@ -14,7 +14,7 @@
get_processed_root_data_dir,
)

schema = dj.Schema()
schema = dj.schema()

_linking_module = None

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 @@ -14,7 +14,7 @@
get_processed_root_data_dir,
)

schema = dj.Schema()
schema = dj.schema()

_linking_module = None

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 @@ -14,7 +14,7 @@
get_processed_root_data_dir,
)

schema = dj.Schema()
schema = dj.schema()

_linking_module = None

Expand Down
2 changes: 1 addition & 1 deletion element_calcium_imaging/imaging_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .plotting import cell_plot

schema = dj.Schema()
schema = dj.schema()

imaging = None

Expand Down
2 changes: 1 addition & 1 deletion element_calcium_imaging/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Package metadata."""

__version__ = "0.10.0"
__version__ = "0.10.1"
1,237 changes: 1,084 additions & 153 deletions notebooks/tutorial.ipynb

Large diffs are not rendered by default.

0 comments on commit 8b1b248

Please sign in to comment.