Skip to content

Commit 8b1b248

Browse files
authored
Merge pull request #196 from MilagrosMarin/main
Improve plotting in tutorial and minor updates to standardize with other Elements
2 parents c8805a5 + 364fa19 commit 8b1b248

File tree

7 files changed

+1095
-158
lines changed

7 files changed

+1095
-158
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.10.1] - 2024-06-20
7+
8+
+ Fix - cleaner plotting in tutorial notebook
9+
+ Update - markdown typos and add links in tutorial notebook
10+
+ Update - from `dj.Schema()` to `dj.schema()` to increase consistency with other Elements
11+
612
## [0.10.0] - 2024-04-09
713

814
+ Add - ROI mask creation widget

element_calcium_imaging/imaging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
get_processed_root_data_dir,
1515
)
1616

17-
schema = dj.Schema()
17+
schema = dj.schema()
1818

1919
_linking_module = None
2020

element_calcium_imaging/imaging_no_curation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
get_processed_root_data_dir,
1515
)
1616

17-
schema = dj.Schema()
17+
schema = dj.schema()
1818

1919
_linking_module = None
2020

element_calcium_imaging/imaging_preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
get_processed_root_data_dir,
1515
)
1616

17-
schema = dj.Schema()
17+
schema = dj.schema()
1818

1919
_linking_module = None
2020

element_calcium_imaging/imaging_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from .plotting import cell_plot
44

5-
schema = dj.Schema()
5+
schema = dj.schema()
66

77
imaging = None
88

element_calcium_imaging/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package metadata."""
22

3-
__version__ = "0.10.0"
3+
__version__ = "0.10.1"

notebooks/tutorial.ipynb

Lines changed: 1084 additions & 153 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)