File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,16 @@ def make(self, key):
159
159
160
160
@schema
161
161
class QualityMetricCutoffs (dj .Lookup ):
162
+ """Cut-off values for quality metrics.
163
+
164
+ Attributes:
165
+ cutoffs_id (smallint): Unique ID for the cut-off values.
166
+ amplitude_cutoff_maximum (float): Optional. Amplitude cut-off.
167
+ presence_ratio_minimum (float): Optional. Presence ratio cut-off.
168
+ isi_violations_maximum (float): Optional. ISI violation ratio cut-off.
169
+ cutoffs_hash (uuid): uuid for the cut-off values.
170
+ """
171
+
162
172
definition = """
163
173
cutoffs_id : smallint
164
174
---
@@ -218,6 +228,13 @@ def insert_new_cutoffs(
218
228
219
229
@schema
220
230
class QualityMetricSet (dj .Manual ):
231
+ """Set of quality metric values for clusters and its cut-offs.
232
+
233
+ Attributes:
234
+ ephys.QualityMetrics (foreign key): ephys.QualityMetrics primary key.
235
+ QualityMetricCutoffs (foreign key): Optional. QualityMetricCutoffs primary key.
236
+ """
237
+
221
238
definition = """
222
239
-> ephys.QualityMetrics
223
240
-> QualityMetricCutoffs
@@ -226,6 +243,13 @@ class QualityMetricSet(dj.Manual):
226
243
227
244
@schema
228
245
class QualityMetricReport (dj .Computed ):
246
+ """Table for storing quality metric figures.
247
+
248
+ Attributes:
249
+ QualityMetricSet (foreign key): QualityMetricSet primary key.
250
+ plot_grid (longblob): Figure object.
251
+ """
252
+
229
253
definition = """
230
254
-> QualityMetricSet
231
255
---
You can’t perform that action at this time.
0 commit comments