Skip to content

Commit a20ab9b

Browse files
authored
Merge pull request #72 from kabilar/main
Add attributes to describe parameter list
2 parents 3eeae51 + 81e1643 commit a20ab9b

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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.1] - 2022-06-01
7+
8+
+ Add - Secondary attributes to `PreClusterParamSteps` table
9+
610
## [0.1.0] - 2022-05-26
711

812
+ Update - Rename module for acute probe insertions from `ephys.py` to `ephys_acute.py`.
@@ -23,6 +27,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
2327
+ Add - Readers for: `SpikeGLX`, `Open Ephys`, `Kilosort`
2428
+ Add - Probe table supporting: Neuropixels probes 1.0 - 3A, 1.0 - 3B, 2.0 - SS, 2.0 - MS
2529

26-
[0.1.0b1]: https://github.com/datajoint/element-array-ephys/compare/0.1.0b0...0.1.0
30+
[0.1.1]: https://github.com/datajoint/element-array-ephys/compare/0.1.0...0.1.1
31+
[0.1.0]: https://github.com/datajoint/element-array-ephys/compare/0.1.0b0...0.1.0
2732
[0.1.0b0]: https://github.com/datajoint/element-array-ephys/compare/0.1.0a5...0.1.0b0
2833
[0.1.0a5]: https://github.com/datajoint/element-array-ephys/releases/tag/0.1.0a5

element_array_ephys/ephys_precluster.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@ class PreClusterParamSteps(dj.Manual):
296296
# Ordered list of paramset_idx that are to be run
297297
# When pre-clustering is not performed, do not create an entry in `Step` Part table
298298
precluster_param_steps_id: smallint
299+
---
300+
precluster_param_steps_name: varchar(32)
301+
precluster_param_steps_desc: varchar(128)
299302
"""
300303

301304
class Step(dj.Part):

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.0'
2+
__version__ = '0.1.1'

0 commit comments

Comments
 (0)