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 6d88838 commit 30f5f9cCopy full SHA for 30f5f9c
1 file changed
src/spikeinterface/extractors/phykilosortextractors.py
@@ -56,7 +56,7 @@ def __init__(
56
spike_clusters = np.atleast_1d(spike_clusters.squeeze())
57
58
clust_id = np.unique(spike_clusters)
59
- unique_unit_ids = list(clust_id)
+ unique_unit_ids = [int(c) for c in clust_id]
60
params = read_python(str(phy_folder / "params.py"))
61
sampling_frequency = params["sample_rate"]
62
0 commit comments