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 288b69b commit 4283378Copy full SHA for 4283378
neo/rawio/intanrawio.py
@@ -174,8 +174,8 @@ def _parse_header(self):
174
for c, chan_info in enumerate(self._ordered_channels):
175
name = chan_info["custom_channel_name"]
176
channel_id = chan_info["native_channel_name"]
177
- if chan_info["signal_type"] == 20:
178
- # exception for temperature
+ if chan_info["signal_type"] == 20 or (self.file_format != "header-attached" and chan_info["signal_type"] == 0):
+ # exception for temperature and for amplifier in non-header attached files
179
sig_dtype = "int16"
180
else:
181
sig_dtype = "uint16"
0 commit comments