File tree Expand file tree Collapse file tree 3 files changed +8
-21
lines changed Expand file tree Collapse file tree 3 files changed +8
-21
lines changed Original file line number Diff line number Diff line change 33Observes [ 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
Original file line number Diff line number Diff 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 --------------------------------------------------------------------
Original file line number Diff line number Diff line change 11"""Package metadata"""
22
3- __version__ = "0.4.2 "
3+ __version__ = "0.5.0 "
You can’t perform that action at this time.
0 commit comments