We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e00c99 commit 2152a5eCopy full SHA for 2152a5e
neo/rawio/neuroscoperawio.py
@@ -69,11 +69,12 @@ def _parse_header(self):
69
70
# one unique stream
71
signal_streams = np.array([('Signals', '0')], dtype=_signal_stream_dtype)
72
-
+
73
# signals
74
sig_channels = []
75
for c in range(nb_channel):
76
- name = 'ch{}grp{}'.format(c, channel_group[c])
+ name = 'ch{}grp{}'.format(c, channel_group.get(c, 'none'))
77
78
chan_id = str(c)
79
units = 'mV'
80
offset = 0.
0 commit comments