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 bfab1dd commit f8244c8Copy full SHA for f8244c8
elements_ephys/readers/spikeglx.py
@@ -303,7 +303,7 @@ def get_original_chans(self):
303
# a block of contiguous channels specified as chan or chan1:chan2 inclusive
304
ix = [int(r) for r in channel_range.split(':')]
305
assert len(ix) in (1, 2), f"Invalid channel range spec '{channel_range}'"
306
- channels = np.append(np.r_[ix[0]:ix[-1] + 1])
+ channels = np.append(channels, np.r_[ix[0]:ix[-1] + 1])
307
return channels
308
309
0 commit comments