File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -428,7 +428,8 @@ class ClusteringMethod(dj.Lookup):
428428 clustering_method_desc: varchar(1000)
429429 """
430430
431- contents = [('kilosort2.5' , 'kilosort2.5 clustering method' ),
431+ contents = [('kilosort2' , 'kilosort2 clustering method' ),
432+ ('kilosort2.5' , 'kilosort2.5 clustering method' ),
432433 ('kilosort3' , 'kilosort3 clustering method' )]
433434
434435
Original file line number Diff line number Diff line change 44import numpy as np
55import inspect
66import importlib
7+ from decimal import Decimal
78
89from element_interface .utils import find_root_directory , find_full_path , dict_to_uuid
910
1011from .readers import spikeglx , kilosort , openephys
11- from . import probe
12+ from . import probe , get_logger
13+
14+
15+ log = get_logger (__name__ )
1216
1317schema = dj .schema ()
1418
@@ -371,7 +375,8 @@ class ClusteringMethod(dj.Lookup):
371375 clustering_method_desc: varchar(1000)
372376 """
373377
374- contents = [('kilosort2.5' , 'kilosort2.5 clustering method' ),
378+ contents = [('kilosort2' , 'kilosort2 clustering method' ),
379+ ('kilosort2.5' , 'kilosort2.5 clustering method' ),
375380 ('kilosort3' , 'kilosort3 clustering method' )]
376381
377382
Original file line number Diff line number Diff line change @@ -427,7 +427,8 @@ class ClusteringMethod(dj.Lookup):
427427 clustering_method_desc: varchar(1000)
428428 """
429429
430- contents = [('kilosort2.5' , 'kilosort2.5 clustering method' ),
430+ contents = [('kilosort2' , 'kilosort2 clustering method' ),
431+ ('kilosort2.5' , 'kilosort2.5 clustering method' ),
431432 ('kilosort3' , 'kilosort3 clustering method' )]
432433
433434
You can’t perform that action at this time.
0 commit comments