Skip to content

Commit a6c0182

Browse files
committed
Fix klustakwik io
1 parent d02ee5f commit a6c0182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/io/klustakwikio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def _load_spike_times(self, fetfilename):
197197
names.append("spike_time")
198198

199199
# Load into recarray
200-
data = np.recfromtxt(fetfilename, names=names, skip_header=1, delimiter=" ")
200+
data = np.genfromtxt(fetfilename, names=names, skip_header=1, delimiter=" ")
201201

202202
# get features
203203
features = np.array([data[f"fet{n}"] for n in range(nbFeatures)])

0 commit comments

Comments
 (0)