Skip to content

Commit

Permalink
Merge pull request #72 from kabilar/main
Browse files Browse the repository at this point in the history
Add attributes to describe parameter list
  • Loading branch information
sidhulyalkar authored Jun 1, 2022
2 parents 3eeae51 + 81e1643 commit a20ab9b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion 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.1] - 2022-06-01

+ Add - Secondary attributes to `PreClusterParamSteps` table

## [0.1.0] - 2022-05-26

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

[0.1.0b1]: https://github.com/datajoint/element-array-ephys/compare/0.1.0b0...0.1.0
[0.1.1]: https://github.com/datajoint/element-array-ephys/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/datajoint/element-array-ephys/compare/0.1.0b0...0.1.0
[0.1.0b0]: https://github.com/datajoint/element-array-ephys/compare/0.1.0a5...0.1.0b0
[0.1.0a5]: https://github.com/datajoint/element-array-ephys/releases/tag/0.1.0a5
3 changes: 3 additions & 0 deletions element_array_ephys/ephys_precluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,9 @@ class PreClusterParamSteps(dj.Manual):
# Ordered list of paramset_idx that are to be run
# When pre-clustering is not performed, do not create an entry in `Step` Part table
precluster_param_steps_id: smallint
---
precluster_param_steps_name: varchar(32)
precluster_param_steps_desc: varchar(128)
"""

class Step(dj.Part):
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.0'
__version__ = '0.1.1'

0 comments on commit a20ab9b

Please sign in to comment.