Skip to content

Commit ecd6a4c

Browse files
authored
Merge pull request #79 from kabilar/main
Update `precluster_output_dir` to nullable
2 parents a01530c + 90f3ed1 commit ecd6a4c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.1.3] - 2022-06-16
7+
8+
+ Update - Allow for the `precluster_output_dir` attribute to be nullable when no pre-clustering is performed.
9+
610
## [0.1.2] - 2022-06-09
711

812
+ Bugfix - Handle case where `pc_features.npy` does not exist.

element_array_ephys/ephys_precluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ class PreClusterTask(dj.Manual):
317317
-> EphysRecording
318318
-> PreClusterParamSteps
319319
---
320-
precluster_output_dir: varchar(255) # pre-clustering output directory relative to the root data directory
320+
precluster_output_dir='': varchar(255) # pre-clustering output directory relative to the root data directory
321321
task_mode='none': enum('none','load', 'trigger') # 'none': no pre-clustering analysis
322322
# 'load': load analysis results
323323
# 'trigger': trigger computation

element_array_ephys/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = '0.1.2'
2+
__version__ = '0.1.3'

0 commit comments

Comments
 (0)