RepetitionsTable

See also:

Format Specification or Source Specification for RepetitionsTable.

class types.core.RepetitionsTable(varargin)[source]

Bases: types.hdmf_common.DynamicTable, types.untyped.GroupClass

REPETITIONSTABLE - A table for grouping different sequential intracellular recordings together. With each SequentialRecording typically representing a particular type of stimulus, the RepetitionsTable table is typically used to group sets of stimuli applied in sequence.

Required Properties*:

colnames, description, id, sequential_recordings, sequential_recordings_index

Constructor Summary
RepetitionsTable(varargin)

REPETITIONSTABLE - Constructor for RepetitionsTable

Syntax:

repetitionsTable = types.core.REPETITIONSTABLE() creates a RepetitionsTable object with unset property values.

repetitionsTable = types.core.REPETITIONSTABLE(Name, Value) creates a RepetitionsTable object where one or more property values are specified using name-value pairs.

Input Arguments (Name-Value Arguments):
  • colnames (char) - The names of the columns in this table. This should be used to specify an order to the columns.

  • description (char) - Description of what is in this dynamic table.

  • id (ElementIdentifiers) - Array of unique identifiers for the rows of this dynamic table.

  • meanings_tables (MeaningsTable) - MeaningsTable objects that provide meanings for values in VectorData columns within this DynamicTable. Tables should be named according to the column they provide meanings for with a “_meanings” suffix. e.g., if a VectorData column is named “stimulus_type”, the corresponding MeaningsTable should be named “stimulus_type_meanings”.

  • sequential_recordings (DynamicTableRegion) - A reference to one or more rows in the SequentialRecordingsTable table.

  • sequential_recordings_index (VectorIndex) - Index dataset for the sequential_recordings column.

  • vectordata (VectorData) - Vector columns, including index columns, of this dynamic table.

Output Arguments:
Property Summary
sequential_recordings

REQUIRED (DynamicTableRegion) A reference to one or more rows in the SequentialRecordingsTable table.

sequential_recordings_index

REQUIRED (VectorIndex) Index dataset for the sequential_recordings column.

Tip

* If a required property link is not functional, the property may be defined in a superclass. Please refer to the superclass documentation.