File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 1
- import json
2
1
import pathlib
3
2
import datetime
4
3
import datajoint as dj
5
- import numpy as np
6
- import importlib
7
- import inspect
8
4
import typing as T
9
5
10
6
schema = dj .schema ()
@@ -47,9 +43,7 @@ def make(self, key):
47
43
48
44
save_dir = _make_save_dir ()
49
45
50
- units = (
51
- ephys .CuratedClustering .Unit & key & "cluster_quality_label='good'"
52
- )
46
+ units = ephys .CuratedClustering .Unit & key & "cluster_quality_label='good'"
53
47
54
48
shanks = set ((probe .ProbeType .Electrode & units ).fetch ("shank" ))
55
49
@@ -98,7 +92,7 @@ class UnitLevelReport(dj.Computed):
98
92
-> ephys.CuratedClustering.Unit
99
93
---
100
94
cluster_quality_label : varchar(100)
101
- waveform_plotly : longblob # dictionary storing the plotly object (from fig.to_plotly_json())
95
+ waveform_plotly : longblob
102
96
autocorrelogram_plotly : longblob
103
97
depth_waveform_plotly : longblob
104
98
"""
You can’t perform that action at this time.
0 commit comments