File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,9 @@ Tables for storing probe or unit-level visualization results.
156
156
| --- | --- |
157
157
| ProbeLevelReport | A table to store drift map figures generated from each recording probe. |
158
158
| UnitLevelReport | A table to store figures (waveforms, autocorrelogram, peak waveform + neighbors) generated for each unit. |
159
+ | QualityMetricCutoffs | A table to store cut-off values for cluster quality metrics. |
160
+ | QualityMetricSet | A table to store a set of quality metric values for clusters and its cut-offs. |
161
+ | QualityMetricReport | A table to store quality metric figures. |
159
162
160
163
## Element Development
161
164
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ def make(self, key):
159
159
160
160
@schema
161
161
class QualityMetricCutoffs (dj .Lookup ):
162
- """Cut-off values for quality metrics.
162
+ """Cut-off values for unit quality metrics.
163
163
164
164
Attributes:
165
165
cutoffs_id (smallint): Unique ID for the cut-off values.
@@ -232,7 +232,7 @@ class QualityMetricSet(dj.Manual):
232
232
233
233
Attributes:
234
234
ephys.QualityMetrics (foreign key): ephys.QualityMetrics primary key.
235
- QualityMetricCutoffs (foreign key): Optional. QualityMetricCutoffs primary key.
235
+ QualityMetricCutoffs (foreign key): QualityMetricCutoffs primary key.
236
236
"""
237
237
238
238
definition = """
You can’t perform that action at this time.
0 commit comments