Skip to content

Commit 3bc1953

Browse files
authored
Merge pull request #65 from kushalbakshi/main
Remove external store tables, increment version and CHANGELOG
2 parents fa34422 + 5053a62 commit 3bc1953

File tree

3 files changed

+8
-21
lines changed

3 files changed

+8
-21
lines changed

CHANGELOG.md

Lines changed: 7 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.5.0] - 2024-02-05
7+
8+
+ Add - New visualization for plotting ROI masks over motion-corrected summary images
9+
+ Remove - `Curation` table from `miniscope.py`
10+
+ Update - `CaImAn` installation management
11+
612
## [0.4.2] - 2024-01-29
713

814
+ Fix - `element-interface` required during package installation
@@ -68,6 +74,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
6874
+ Add - Load data acquired with Miniscope-DAQ-V3
6975
+ Add - Load data analyzed with MiniscopeAnalysis
7076

77+
[0.5.0]: https://github.com/datajoint/element-miniscope/releases/tag/0.5.0
7178
[0.4.0]: https://github.com/datajoint/element-miniscope/releases/tag/0.4.0
7279
[0.3.2]: https://github.com/datajoint/element-miniscope/releases/tag/0.3.2
7380
[0.3.1]: https://github.com/datajoint/element-miniscope/releases/tag/0.3.1

element_miniscope/miniscope.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -640,14 +640,6 @@ class Processing(dj.Computed):
640640
package_version='' : varchar(16)
641641
"""
642642

643-
class File(dj.Part):
644-
definition = """
645-
-> master
646-
file_name: varchar(255) # file name
647-
---
648-
file: filepath@miniscope-processed
649-
"""
650-
651643
def make(self, key):
652644
"""
653645
Execute the miniscope analysis defined by the ProcessingTask.
@@ -726,18 +718,6 @@ def make(self, key):
726718
raise ValueError(f"Unknown task mode: {task_mode}")
727719

728720
self.insert1(key)
729-
self.File.insert(
730-
[
731-
{
732-
**key,
733-
"file_name": f.relative_to(output_dir).as_posix(),
734-
"file": f,
735-
}
736-
for f in output_dir.rglob("*")
737-
if f.is_file()
738-
],
739-
ignore_extra_fields=True,
740-
)
741721

742722

743723
# Motion Correction --------------------------------------------------------------------

element_miniscope/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.4.2"
3+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)