Skip to content

Commit

Permalink
use_names_as_ids update
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishalcrow committed Jun 27, 2024
1 parent b88ddcb commit efede13
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/spikeinterface/extractors/neoextractors/blackrock.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ class BlackrockRecordingExtractor(NeoBaseRecordingExtractor):
If there are several streams, specify the stream name you want to load.
all_annotations : bool, default: False
Load exhaustively all annotations from neo.
use_names_as_ids : bool or None, default: None
If True, use channel names as IDs. If None, use default IDs.
use_names_as_ids : bool, default: False
If False, use default IDs inherited from Neo. If True, use channel names as IDs.
"""

mode = "file"
Expand Down
4 changes: 3 additions & 1 deletion src/spikeinterface/extractors/neoextractors/intan.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ class IntanRecordingExtractor(NeoBaseRecordingExtractor):
check we perform is that timestamps are continuous. Setting this to True will ignore this check and set
the attribute `discontinuous_timestamps` to True in the underlying neo object.
use_names_as_ids : bool, default: False
If True, use channel names as IDs. If False, use default IDs inherited from neo.
If False, use default IDs inherited from Neo. If True, use channel names as IDs.
"""

mode = "file"
Expand Down

0 comments on commit efede13

Please sign in to comment.