Skip to content

Commit dc52a6e

Browse files
committed
2 parents ab7b78c + 89f1d7c commit dc52a6e

14 files changed

+2915
-1352
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,7 @@ dj_local_conf_old.json
118118
docker-compose.y*ml
119119

120120
# include
121-
!docs/docker-compose.yaml
121+
!docs/docker-compose.yaml
122+
123+
# vscode settings
124+
.vscode

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
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.6] - 2022-10-21
6+
## [0.2.0] - 2022-10-28
77

8-
+ Add - mkdocs deployment with workflow API docs
8+
+ Add - New schema `ephys_report` to compute and store figures from results
9+
+ Add - Widget to display figures
10+
+ Add - Add `ephys_no_curation` and routines to trigger spike-sorting analysis using Kilosort (2.0, 2.5)
911

10-
## [0.1.5] - 2022-07-11
12+
## 0.1.5 - 2022-09-29
1113

1214
+ Add - New `QualityMetrics` table to store clusters' and waveforms' metrics after the spike sorting analysis.
1315

@@ -52,7 +54,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
5254
+ Add - Readers for: `SpikeGLX`, `Open Ephys`, `Kilosort`
5355
+ Add - Probe table supporting: Neuropixels probes 1.0 - 3A, 1.0 - 3B, 2.0 - SS, 2.0 - MS
5456

55-
[0.2.0]: https://github.com/datajoint/element-array-ephys/compare/0.1.4...0.2.0
57+
[0.2.0]: https://github.com/datajoint/element-array-ephys/releases/tag/0.2.0
5658
[0.1.4]: https://github.com/datajoint/element-array-ephys/compare/0.1.3...0.1.4
5759
[0.1.3]: https://github.com/datajoint/element-array-ephys/compare/0.1.2...0.1.3
5860
[0.1.2]: https://github.com/datajoint/element-array-ephys/compare/0.1.1...0.1.2

element_array_ephys/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
import os
44

55

6-
dj.config['enable_python_native_blobs'] = True
6+
dj.config["enable_python_native_blobs"] = True
77

88

99
def get_logger(name):
1010
log = logging.getLogger(name)
11-
log.setLevel(os.getenv('LOGLEVEL', 'INFO'))
11+
log.setLevel(os.getenv("LOGLEVEL", "INFO"))
1212
return log
1313

14+
1415
from . import ephys_acute as ephys

element_array_ephys/ephys_acute.py

Lines changed: 614 additions & 360 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)