Skip to content

Commit

Permalink
Merge pull request #79 from kabilar/main
Browse files Browse the repository at this point in the history
Update `precluster_output_dir` to nullable
  • Loading branch information
sidhulyalkar authored Jun 16, 2022
2 parents a01530c + 90f3ed1 commit ecd6a4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
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.1.3] - 2022-06-16

+ Update - Allow for the `precluster_output_dir` attribute to be nullable when no pre-clustering is performed.

## [0.1.2] - 2022-06-09

+ Bugfix - Handle case where `pc_features.npy` does not exist.
Expand Down
2 changes: 1 addition & 1 deletion element_array_ephys/ephys_precluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ class PreClusterTask(dj.Manual):
-> EphysRecording
-> PreClusterParamSteps
---
precluster_output_dir: varchar(255) # pre-clustering output directory relative to the root data directory
precluster_output_dir='': varchar(255) # pre-clustering output directory relative to the root data directory
task_mode='none': enum('none','load', 'trigger') # 'none': no pre-clustering analysis
# 'load': load analysis results
# 'trigger': trigger computation
Expand Down
2 changes: 1 addition & 1 deletion element_array_ephys/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = '0.1.2'
__version__ = '0.1.3'

0 comments on commit ecd6a4c

Please sign in to comment.