We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc54009 commit 707adffCopy full SHA for 707adff
element_array_ephys/export/nwb/nwb.py
@@ -199,6 +199,9 @@ def create_units_table(
199
# add additional columns to the units table
200
units_query = ephys.CuratedClustering.Unit() & session_key
201
for additional_attribute in ["cluster_quality_label", "spike_depths"]:
202
+ # The `index` parameter indicates whether the column is a "ragged array," i.e.
203
+ # whether each row of this column is a vector with potentially different lengths
204
+ # for each row.
205
units_table.add_column(
206
name=units_query.heading.attributes[additional_attribute].name,
207
description=units_query.heading.attributes[additional_attribute].comment,
0 commit comments