Skip to content

Commit aa47c8a

Browse files
author
Thinh Nguyen
committed
include probe as part of the electrode_group name for uniqueness
1 parent 8657d58 commit aa47c8a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
44

55

6-
## [0.1.0b3] - 2021-11-29
6+
## [0.1.0b4] - 2021-11-29
77
### Added
88
+ NWB export
99
+ Processing with Kilosort and pyKilosort for Open Ephys and SpikeGLX

element_array_ephys/export/nwb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def curated_clusterings_to_nwb(curated_clustering_keys, nwbfile, ephys_module=No
8181
else nwbfile.create_device(name=ephys_device_name))
8282

8383
electrode_group = nwbfile.create_electrode_group(
84-
name=electrode_config['electrode_config_name'],
84+
name=f'{electrode_config["probe"]} {electrode_config["electrode_config_name"]}',
8585
description=json.dumps(electrode_config, default=str),
8686
device=ephys_device,
8787
location=insert_location)

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.0b3'
2+
__version__ = '0.1.0b4'

0 commit comments

Comments
 (0)