Skip to content

Commit d362792

Browse files
committed
update concepts.md
1 parent ea03674 commit d362792

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

docs/src/concepts.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ Tables for storing probe or unit-level visualization results.
156156
| --- | --- |
157157
| ProbeLevelReport | A table to store drift map figures generated from each recording probe. |
158158
| 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. |
159162

160163
## Element Development
161164

element_array_ephys/ephys_report.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def make(self, key):
159159

160160
@schema
161161
class QualityMetricCutoffs(dj.Lookup):
162-
"""Cut-off values for quality metrics.
162+
"""Cut-off values for unit quality metrics.
163163
164164
Attributes:
165165
cutoffs_id (smallint): Unique ID for the cut-off values.
@@ -232,7 +232,7 @@ class QualityMetricSet(dj.Manual):
232232
233233
Attributes:
234234
ephys.QualityMetrics (foreign key): ephys.QualityMetrics primary key.
235-
QualityMetricCutoffs (foreign key): Optional. QualityMetricCutoffs primary key.
235+
QualityMetricCutoffs (foreign key): QualityMetricCutoffs primary key.
236236
"""
237237

238238
definition = """

0 commit comments

Comments
 (0)