mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2025-01-10 06:04:28 +00:00
regenerate models
This commit is contained in:
parent
582ac5f09c
commit
fe7e9f89ca
82 changed files with 1794 additions and 1955 deletions
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -7,39 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_0.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_0.hdmf_common_table import (
|
|
||||||
Data,
|
|
||||||
Index,
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
Container,
|
|
||||||
DynamicTable,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_0.core_nwb_retinotopy import (
|
|
||||||
RetinotopyMap,
|
|
||||||
AxisMap,
|
|
||||||
RetinotopyImage,
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_0.core_nwb_image import (
|
|
||||||
GrayscaleImage,
|
|
||||||
RGBImage,
|
|
||||||
RGBAImage,
|
|
||||||
ImageSeries,
|
|
||||||
ImageSeriesExternalFile,
|
|
||||||
ImageMaskSeries,
|
|
||||||
OpticalSeries,
|
|
||||||
IndexSeries,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_0.core_nwb_base import (
|
from ...core.v2_2_0.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
Image,
|
Image,
|
||||||
|
@ -52,21 +19,31 @@ from ...core.v2_2_0.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_0.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_0.core_nwb_device import Device
|
from ...core.v2_2_0.core_nwb_device import Device
|
||||||
from ...core.v2_2_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_2_0.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||||
|
from ...core.v2_2_0.core_nwb_image import (
|
||||||
|
GrayscaleImage,
|
||||||
|
RGBImage,
|
||||||
|
RGBAImage,
|
||||||
|
ImageSeries,
|
||||||
|
ImageSeriesExternalFile,
|
||||||
|
ImageMaskSeries,
|
||||||
|
OpticalSeries,
|
||||||
|
IndexSeries,
|
||||||
|
)
|
||||||
|
from ...core.v2_2_0.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_2_0.core_nwb_icephys import (
|
from ...core.v2_2_0.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -89,29 +66,19 @@ from ...core.v2_2_0.core_nwb_icephys import (
|
||||||
IntracellularElectrode,
|
IntracellularElectrode,
|
||||||
SweepTable,
|
SweepTable,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_0.core_nwb_ecephys import (
|
from ...core.v2_2_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_2_0.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
ImagingPlane,
|
||||||
ElectrodeGroup,
|
ImagingPlaneManifold,
|
||||||
ElectrodeGroupPosition,
|
ImagingPlaneOriginCoords,
|
||||||
ClusterWaveforms,
|
ImagingPlaneGridSpacing,
|
||||||
Clustering,
|
OpticalChannel,
|
||||||
)
|
MotionCorrection,
|
||||||
from ...core.v2_2_0.core_nwb_behavior import (
|
|
||||||
SpatialSeries,
|
|
||||||
SpatialSeriesData,
|
|
||||||
BehavioralEpochs,
|
|
||||||
BehavioralEvents,
|
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_2_0.core_nwb_misc import (
|
from ...core.v2_2_0.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -135,7 +102,40 @@ from ...core.v2_2_0.core_nwb_file import (
|
||||||
GeneralIntracellularEphys,
|
GeneralIntracellularEphys,
|
||||||
NWBFileIntervals,
|
NWBFileIntervals,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_0.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
from ...core.v2_2_0.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_2_0.core_nwb_retinotopy import (
|
||||||
|
RetinotopyMap,
|
||||||
|
AxisMap,
|
||||||
|
RetinotopyImage,
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_0.hdmf_common_table import (
|
||||||
|
Data,
|
||||||
|
Index,
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
Container,
|
||||||
|
DynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_0.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.2.0"
|
version = "2.2.0"
|
||||||
|
|
|
@ -7,39 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_2.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_2.hdmf_common_table import (
|
|
||||||
Data,
|
|
||||||
Index,
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
Container,
|
|
||||||
DynamicTable,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_1.core_nwb_retinotopy import (
|
|
||||||
RetinotopyMap,
|
|
||||||
AxisMap,
|
|
||||||
RetinotopyImage,
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_1.core_nwb_image import (
|
|
||||||
GrayscaleImage,
|
|
||||||
RGBImage,
|
|
||||||
RGBAImage,
|
|
||||||
ImageSeries,
|
|
||||||
ImageSeriesExternalFile,
|
|
||||||
ImageMaskSeries,
|
|
||||||
OpticalSeries,
|
|
||||||
IndexSeries,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_1.core_nwb_base import (
|
from ...core.v2_2_1.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
Image,
|
Image,
|
||||||
|
@ -52,21 +19,31 @@ from ...core.v2_2_1.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_1.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_1.core_nwb_device import Device
|
from ...core.v2_2_1.core_nwb_device import Device
|
||||||
from ...core.v2_2_1.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_2_1.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||||
|
from ...core.v2_2_1.core_nwb_image import (
|
||||||
|
GrayscaleImage,
|
||||||
|
RGBImage,
|
||||||
|
RGBAImage,
|
||||||
|
ImageSeries,
|
||||||
|
ImageSeriesExternalFile,
|
||||||
|
ImageMaskSeries,
|
||||||
|
OpticalSeries,
|
||||||
|
IndexSeries,
|
||||||
|
)
|
||||||
|
from ...core.v2_2_1.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_2_1.core_nwb_icephys import (
|
from ...core.v2_2_1.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -89,29 +66,19 @@ from ...core.v2_2_1.core_nwb_icephys import (
|
||||||
IntracellularElectrode,
|
IntracellularElectrode,
|
||||||
SweepTable,
|
SweepTable,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_1.core_nwb_ecephys import (
|
from ...core.v2_2_1.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_2_1.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
ImagingPlane,
|
||||||
ElectrodeGroup,
|
ImagingPlaneManifold,
|
||||||
ElectrodeGroupPosition,
|
ImagingPlaneOriginCoords,
|
||||||
ClusterWaveforms,
|
ImagingPlaneGridSpacing,
|
||||||
Clustering,
|
OpticalChannel,
|
||||||
)
|
MotionCorrection,
|
||||||
from ...core.v2_2_1.core_nwb_behavior import (
|
|
||||||
SpatialSeries,
|
|
||||||
SpatialSeriesData,
|
|
||||||
BehavioralEpochs,
|
|
||||||
BehavioralEvents,
|
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_2_1.core_nwb_misc import (
|
from ...core.v2_2_1.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -135,7 +102,40 @@ from ...core.v2_2_1.core_nwb_file import (
|
||||||
GeneralIntracellularEphys,
|
GeneralIntracellularEphys,
|
||||||
NWBFileIntervals,
|
NWBFileIntervals,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_1.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
from ...core.v2_2_1.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_2_1.core_nwb_retinotopy import (
|
||||||
|
RetinotopyMap,
|
||||||
|
AxisMap,
|
||||||
|
RetinotopyImage,
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_2.hdmf_common_table import (
|
||||||
|
Data,
|
||||||
|
Index,
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
Container,
|
||||||
|
DynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_2.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.2.1"
|
version = "2.2.1"
|
||||||
|
|
|
@ -7,32 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
|
||||||
Data,
|
|
||||||
Index,
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
Container,
|
|
||||||
DynamicTable,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_2.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_2.core_nwb_base import (
|
from ...core.v2_2_2.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
Image,
|
Image,
|
||||||
|
@ -45,20 +19,8 @@ from ...core.v2_2_2.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_2.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_2.core_nwb_device import Device
|
from ...core.v2_2_2.core_nwb_device import Device
|
||||||
|
from ...core.v2_2_2.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||||
from ...core.v2_2_2.core_nwb_image import (
|
from ...core.v2_2_2.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -69,7 +31,19 @@ from ...core.v2_2_2.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_2.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_2_2.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_2_2.core_nwb_icephys import (
|
from ...core.v2_2_2.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -92,29 +66,19 @@ from ...core.v2_2_2.core_nwb_icephys import (
|
||||||
IntracellularElectrode,
|
IntracellularElectrode,
|
||||||
SweepTable,
|
SweepTable,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_2.core_nwb_ecephys import (
|
from ...core.v2_2_2.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_2_2.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
ImagingPlane,
|
||||||
ElectrodeGroup,
|
ImagingPlaneManifold,
|
||||||
ElectrodeGroupPosition,
|
ImagingPlaneOriginCoords,
|
||||||
ClusterWaveforms,
|
ImagingPlaneGridSpacing,
|
||||||
Clustering,
|
OpticalChannel,
|
||||||
)
|
MotionCorrection,
|
||||||
from ...core.v2_2_2.core_nwb_behavior import (
|
|
||||||
SpatialSeries,
|
|
||||||
SpatialSeriesData,
|
|
||||||
BehavioralEpochs,
|
|
||||||
BehavioralEvents,
|
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_2_2.core_nwb_misc import (
|
from ...core.v2_2_2.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -138,7 +102,43 @@ from ...core.v2_2_2.core_nwb_file import (
|
||||||
GeneralIntracellularEphys,
|
GeneralIntracellularEphys,
|
||||||
NWBFileIntervals,
|
NWBFileIntervals,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_2.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
from ...core.v2_2_2.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_2_2.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
||||||
|
Data,
|
||||||
|
Index,
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
Container,
|
||||||
|
DynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.2.2"
|
version = "2.2.2"
|
||||||
|
|
|
@ -7,32 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
|
||||||
Data,
|
|
||||||
Index,
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
Container,
|
|
||||||
DynamicTable,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_4.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_4.core_nwb_base import (
|
from ...core.v2_2_4.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
Image,
|
Image,
|
||||||
|
@ -45,25 +19,8 @@ from ...core.v2_2_4.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_4.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
PlaneSegmentation,
|
|
||||||
PlaneSegmentationImageMask,
|
|
||||||
PlaneSegmentationPixelMask,
|
|
||||||
PlaneSegmentationVoxelMask,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
CorrectedImageStack,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_4.core_nwb_device import Device
|
from ...core.v2_2_4.core_nwb_device import Device
|
||||||
|
from ...core.v2_2_4.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||||
from ...core.v2_2_4.core_nwb_image import (
|
from ...core.v2_2_4.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -74,7 +31,19 @@ from ...core.v2_2_4.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_4.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_2_4.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_2_4.core_nwb_icephys import (
|
from ...core.v2_2_4.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -97,29 +66,24 @@ from ...core.v2_2_4.core_nwb_icephys import (
|
||||||
IntracellularElectrode,
|
IntracellularElectrode,
|
||||||
SweepTable,
|
SweepTable,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_4.core_nwb_ecephys import (
|
from ...core.v2_2_4.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_2_4.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
PlaneSegmentation,
|
||||||
ElectrodeGroup,
|
PlaneSegmentationImageMask,
|
||||||
ElectrodeGroupPosition,
|
PlaneSegmentationPixelMask,
|
||||||
ClusterWaveforms,
|
PlaneSegmentationVoxelMask,
|
||||||
Clustering,
|
ImagingPlane,
|
||||||
)
|
ImagingPlaneManifold,
|
||||||
from ...core.v2_2_4.core_nwb_behavior import (
|
ImagingPlaneOriginCoords,
|
||||||
SpatialSeries,
|
ImagingPlaneGridSpacing,
|
||||||
SpatialSeriesData,
|
OpticalChannel,
|
||||||
BehavioralEpochs,
|
MotionCorrection,
|
||||||
BehavioralEvents,
|
CorrectedImageStack,
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_2_4.core_nwb_misc import (
|
from ...core.v2_2_4.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -145,7 +109,43 @@ from ...core.v2_2_4.core_nwb_file import (
|
||||||
LabMetaData,
|
LabMetaData,
|
||||||
Subject,
|
Subject,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_4.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
from ...core.v2_2_4.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_2_4.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
||||||
|
Data,
|
||||||
|
Index,
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
Container,
|
||||||
|
DynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.2.4"
|
version = "2.2.4"
|
||||||
|
|
|
@ -7,32 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
|
||||||
Data,
|
|
||||||
Index,
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
Container,
|
|
||||||
DynamicTable,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_5.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_5.core_nwb_base import (
|
from ...core.v2_2_5.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
Image,
|
Image,
|
||||||
|
@ -45,25 +19,8 @@ from ...core.v2_2_5.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_5.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
PlaneSegmentation,
|
|
||||||
PlaneSegmentationImageMask,
|
|
||||||
PlaneSegmentationPixelMask,
|
|
||||||
PlaneSegmentationVoxelMask,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
CorrectedImageStack,
|
|
||||||
)
|
|
||||||
from ...core.v2_2_5.core_nwb_device import Device
|
from ...core.v2_2_5.core_nwb_device import Device
|
||||||
|
from ...core.v2_2_5.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||||
from ...core.v2_2_5.core_nwb_image import (
|
from ...core.v2_2_5.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -74,7 +31,19 @@ from ...core.v2_2_5.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_5.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_2_5.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_2_5.core_nwb_icephys import (
|
from ...core.v2_2_5.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -97,29 +66,24 @@ from ...core.v2_2_5.core_nwb_icephys import (
|
||||||
IntracellularElectrode,
|
IntracellularElectrode,
|
||||||
SweepTable,
|
SweepTable,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_5.core_nwb_ecephys import (
|
from ...core.v2_2_5.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_2_5.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
PlaneSegmentation,
|
||||||
ElectrodeGroup,
|
PlaneSegmentationImageMask,
|
||||||
ElectrodeGroupPosition,
|
PlaneSegmentationPixelMask,
|
||||||
ClusterWaveforms,
|
PlaneSegmentationVoxelMask,
|
||||||
Clustering,
|
ImagingPlane,
|
||||||
)
|
ImagingPlaneManifold,
|
||||||
from ...core.v2_2_5.core_nwb_behavior import (
|
ImagingPlaneOriginCoords,
|
||||||
SpatialSeries,
|
ImagingPlaneGridSpacing,
|
||||||
SpatialSeriesData,
|
OpticalChannel,
|
||||||
BehavioralEpochs,
|
MotionCorrection,
|
||||||
BehavioralEvents,
|
CorrectedImageStack,
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_2_5.core_nwb_misc import (
|
from ...core.v2_2_5.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -145,7 +109,43 @@ from ...core.v2_2_5.core_nwb_file import (
|
||||||
LabMetaData,
|
LabMetaData,
|
||||||
Subject,
|
Subject,
|
||||||
)
|
)
|
||||||
from ...core.v2_2_5.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
from ...core.v2_2_5.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_2_5.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
||||||
|
Data,
|
||||||
|
Index,
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
Container,
|
||||||
|
DynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.2.5"
|
version = "2.2.5"
|
||||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesResources,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
DynamicTable,
|
|
||||||
AlignedDynamicTable,
|
|
||||||
)
|
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
|
||||||
from ...core.v2_3_0.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_3_0.core_nwb_base import (
|
from ...core.v2_3_0.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
Image,
|
Image,
|
||||||
|
@ -48,25 +19,8 @@ from ...core.v2_3_0.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_3_0.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
PlaneSegmentation,
|
|
||||||
PlaneSegmentationImageMask,
|
|
||||||
PlaneSegmentationPixelMask,
|
|
||||||
PlaneSegmentationVoxelMask,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
CorrectedImageStack,
|
|
||||||
)
|
|
||||||
from ...core.v2_3_0.core_nwb_device import Device
|
from ...core.v2_3_0.core_nwb_device import Device
|
||||||
|
from ...core.v2_3_0.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||||
from ...core.v2_3_0.core_nwb_image import (
|
from ...core.v2_3_0.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -77,7 +31,19 @@ from ...core.v2_3_0.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_3_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_3_0.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_3_0.core_nwb_icephys import (
|
from ...core.v2_3_0.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -100,29 +66,24 @@ from ...core.v2_3_0.core_nwb_icephys import (
|
||||||
IntracellularElectrode,
|
IntracellularElectrode,
|
||||||
SweepTable,
|
SweepTable,
|
||||||
)
|
)
|
||||||
from ...core.v2_3_0.core_nwb_ecephys import (
|
from ...core.v2_3_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_3_0.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
PlaneSegmentation,
|
||||||
ElectrodeGroup,
|
PlaneSegmentationImageMask,
|
||||||
ElectrodeGroupPosition,
|
PlaneSegmentationPixelMask,
|
||||||
ClusterWaveforms,
|
PlaneSegmentationVoxelMask,
|
||||||
Clustering,
|
ImagingPlane,
|
||||||
)
|
ImagingPlaneManifold,
|
||||||
from ...core.v2_3_0.core_nwb_behavior import (
|
ImagingPlaneOriginCoords,
|
||||||
SpatialSeries,
|
ImagingPlaneGridSpacing,
|
||||||
SpatialSeriesData,
|
OpticalChannel,
|
||||||
BehavioralEpochs,
|
MotionCorrection,
|
||||||
BehavioralEvents,
|
CorrectedImageStack,
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_3_0.core_nwb_misc import (
|
from ...core.v2_3_0.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -148,7 +109,46 @@ from ...core.v2_3_0.core_nwb_file import (
|
||||||
LabMetaData,
|
LabMetaData,
|
||||||
Subject,
|
Subject,
|
||||||
)
|
)
|
||||||
from ...core.v2_3_0.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
from ...core.v2_3_0.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_3_0.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
DynamicTable,
|
||||||
|
AlignedDynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesResources,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.3.0"
|
version = "2.3.0"
|
||||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesResources,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
DynamicTable,
|
|
||||||
AlignedDynamicTable,
|
|
||||||
)
|
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
|
||||||
from ...core.v2_4_0.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_4_0.core_nwb_base import (
|
from ...core.v2_4_0.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
TimeSeriesReferenceVectorData,
|
TimeSeriesReferenceVectorData,
|
||||||
|
@ -49,25 +20,8 @@ from ...core.v2_4_0.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_4_0.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
PlaneSegmentation,
|
|
||||||
PlaneSegmentationImageMask,
|
|
||||||
PlaneSegmentationPixelMask,
|
|
||||||
PlaneSegmentationVoxelMask,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
CorrectedImageStack,
|
|
||||||
)
|
|
||||||
from ...core.v2_4_0.core_nwb_device import Device
|
from ...core.v2_4_0.core_nwb_device import Device
|
||||||
|
from ...core.v2_4_0.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||||
from ...core.v2_4_0.core_nwb_image import (
|
from ...core.v2_4_0.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -78,7 +32,19 @@ from ...core.v2_4_0.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_4_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_4_0.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_4_0.core_nwb_icephys import (
|
from ...core.v2_4_0.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -113,29 +79,24 @@ from ...core.v2_4_0.core_nwb_icephys import (
|
||||||
ExperimentalConditionsTable,
|
ExperimentalConditionsTable,
|
||||||
ExperimentalConditionsTableRepetitions,
|
ExperimentalConditionsTableRepetitions,
|
||||||
)
|
)
|
||||||
from ...core.v2_4_0.core_nwb_ecephys import (
|
from ...core.v2_4_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_4_0.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
PlaneSegmentation,
|
||||||
ElectrodeGroup,
|
PlaneSegmentationImageMask,
|
||||||
ElectrodeGroupPosition,
|
PlaneSegmentationPixelMask,
|
||||||
ClusterWaveforms,
|
PlaneSegmentationVoxelMask,
|
||||||
Clustering,
|
ImagingPlane,
|
||||||
)
|
ImagingPlaneManifold,
|
||||||
from ...core.v2_4_0.core_nwb_behavior import (
|
ImagingPlaneOriginCoords,
|
||||||
SpatialSeries,
|
ImagingPlaneGridSpacing,
|
||||||
SpatialSeriesData,
|
OpticalChannel,
|
||||||
BehavioralEpochs,
|
MotionCorrection,
|
||||||
BehavioralEvents,
|
CorrectedImageStack,
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_4_0.core_nwb_misc import (
|
from ...core.v2_4_0.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -161,7 +122,46 @@ from ...core.v2_4_0.core_nwb_file import (
|
||||||
LabMetaData,
|
LabMetaData,
|
||||||
Subject,
|
Subject,
|
||||||
)
|
)
|
||||||
from ...core.v2_4_0.core_nwb_epoch import TimeIntervals, TimeIntervalsTimeseries
|
from ...core.v2_4_0.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_4_0.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
DynamicTable,
|
||||||
|
AlignedDynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesResources,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.4.0"
|
version = "2.4.0"
|
||||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesResources,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
DynamicTable,
|
|
||||||
AlignedDynamicTable,
|
|
||||||
)
|
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
|
||||||
from ...core.v2_5_0.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_5_0.core_nwb_base import (
|
from ...core.v2_5_0.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
TimeSeriesReferenceVectorData,
|
TimeSeriesReferenceVectorData,
|
||||||
|
@ -50,25 +21,8 @@ from ...core.v2_5_0.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_5_0.core_nwb_ophys import (
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
PlaneSegmentation,
|
|
||||||
PlaneSegmentationImageMask,
|
|
||||||
PlaneSegmentationPixelMask,
|
|
||||||
PlaneSegmentationVoxelMask,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
CorrectedImageStack,
|
|
||||||
)
|
|
||||||
from ...core.v2_5_0.core_nwb_device import Device
|
from ...core.v2_5_0.core_nwb_device import Device
|
||||||
|
from ...core.v2_5_0.core_nwb_epoch import TimeIntervals
|
||||||
from ...core.v2_5_0.core_nwb_image import (
|
from ...core.v2_5_0.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -79,7 +33,19 @@ from ...core.v2_5_0.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_5_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_5_0.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_5_0.core_nwb_icephys import (
|
from ...core.v2_5_0.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -114,29 +80,24 @@ from ...core.v2_5_0.core_nwb_icephys import (
|
||||||
ExperimentalConditionsTable,
|
ExperimentalConditionsTable,
|
||||||
ExperimentalConditionsTableRepetitions,
|
ExperimentalConditionsTableRepetitions,
|
||||||
)
|
)
|
||||||
from ...core.v2_5_0.core_nwb_ecephys import (
|
from ...core.v2_5_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_5_0.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
TwoPhotonSeries,
|
||||||
FeatureExtraction,
|
RoiResponseSeries,
|
||||||
EventDetection,
|
DfOverF,
|
||||||
EventWaveform,
|
Fluorescence,
|
||||||
FilteredEphys,
|
ImageSegmentation,
|
||||||
LFP,
|
PlaneSegmentation,
|
||||||
ElectrodeGroup,
|
PlaneSegmentationImageMask,
|
||||||
ElectrodeGroupPosition,
|
PlaneSegmentationPixelMask,
|
||||||
ClusterWaveforms,
|
PlaneSegmentationVoxelMask,
|
||||||
Clustering,
|
ImagingPlane,
|
||||||
)
|
ImagingPlaneManifold,
|
||||||
from ...core.v2_5_0.core_nwb_behavior import (
|
ImagingPlaneOriginCoords,
|
||||||
SpatialSeries,
|
ImagingPlaneGridSpacing,
|
||||||
SpatialSeriesData,
|
OpticalChannel,
|
||||||
BehavioralEpochs,
|
MotionCorrection,
|
||||||
BehavioralEvents,
|
CorrectedImageStack,
|
||||||
BehavioralTimeSeries,
|
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_5_0.core_nwb_misc import (
|
from ...core.v2_5_0.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -162,7 +123,46 @@ from ...core.v2_5_0.core_nwb_file import (
|
||||||
LabMetaData,
|
LabMetaData,
|
||||||
Subject,
|
Subject,
|
||||||
)
|
)
|
||||||
from ...core.v2_5_0.core_nwb_epoch import TimeIntervals
|
from ...core.v2_5_0.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_5_0.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
DynamicTable,
|
||||||
|
AlignedDynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesResources,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.5.0"
|
version = "2.5.0"
|
||||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesResources,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
DynamicTable,
|
|
||||||
AlignedDynamicTable,
|
|
||||||
)
|
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
|
||||||
from ...core.v2_6_0_alpha.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_6_0_alpha.core_nwb_base import (
|
from ...core.v2_6_0_alpha.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
TimeSeriesReferenceVectorData,
|
TimeSeriesReferenceVectorData,
|
||||||
|
@ -50,26 +21,8 @@ from ...core.v2_6_0_alpha.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_6_0_alpha.core_nwb_ophys import (
|
|
||||||
OnePhotonSeries,
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
PlaneSegmentation,
|
|
||||||
PlaneSegmentationImageMask,
|
|
||||||
PlaneSegmentationPixelMask,
|
|
||||||
PlaneSegmentationVoxelMask,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
CorrectedImageStack,
|
|
||||||
)
|
|
||||||
from ...core.v2_6_0_alpha.core_nwb_device import Device
|
from ...core.v2_6_0_alpha.core_nwb_device import Device
|
||||||
|
from ...core.v2_6_0_alpha.core_nwb_epoch import TimeIntervals
|
||||||
from ...core.v2_6_0_alpha.core_nwb_image import (
|
from ...core.v2_6_0_alpha.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -80,7 +33,19 @@ from ...core.v2_6_0_alpha.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_6_0_alpha.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_6_0_alpha.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_6_0_alpha.core_nwb_icephys import (
|
from ...core.v2_6_0_alpha.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -115,29 +80,25 @@ from ...core.v2_6_0_alpha.core_nwb_icephys import (
|
||||||
ExperimentalConditionsTable,
|
ExperimentalConditionsTable,
|
||||||
ExperimentalConditionsTableRepetitions,
|
ExperimentalConditionsTableRepetitions,
|
||||||
)
|
)
|
||||||
from ...core.v2_6_0_alpha.core_nwb_ecephys import (
|
from ...core.v2_6_0_alpha.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_6_0_alpha.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
OnePhotonSeries,
|
||||||
FeatureExtraction,
|
TwoPhotonSeries,
|
||||||
EventDetection,
|
RoiResponseSeries,
|
||||||
EventWaveform,
|
DfOverF,
|
||||||
FilteredEphys,
|
Fluorescence,
|
||||||
LFP,
|
ImageSegmentation,
|
||||||
ElectrodeGroup,
|
PlaneSegmentation,
|
||||||
ElectrodeGroupPosition,
|
PlaneSegmentationImageMask,
|
||||||
ClusterWaveforms,
|
PlaneSegmentationPixelMask,
|
||||||
Clustering,
|
PlaneSegmentationVoxelMask,
|
||||||
)
|
ImagingPlane,
|
||||||
from ...core.v2_6_0_alpha.core_nwb_behavior import (
|
ImagingPlaneManifold,
|
||||||
SpatialSeries,
|
ImagingPlaneOriginCoords,
|
||||||
SpatialSeriesData,
|
ImagingPlaneGridSpacing,
|
||||||
BehavioralEpochs,
|
OpticalChannel,
|
||||||
BehavioralEvents,
|
MotionCorrection,
|
||||||
BehavioralTimeSeries,
|
CorrectedImageStack,
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_6_0_alpha.core_nwb_misc import (
|
from ...core.v2_6_0_alpha.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -164,7 +125,46 @@ from ...core.v2_6_0_alpha.core_nwb_file import (
|
||||||
Subject,
|
Subject,
|
||||||
SubjectAge,
|
SubjectAge,
|
||||||
)
|
)
|
||||||
from ...core.v2_6_0_alpha.core_nwb_epoch import TimeIntervals
|
from ...core.v2_6_0_alpha.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_6_0_alpha.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
DynamicTable,
|
||||||
|
AlignedDynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesResources,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.6.0-alpha"
|
version = "2.6.0-alpha"
|
||||||
|
|
|
@ -7,36 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_5_0.hdmf_experimental_resources import (
|
|
||||||
HERD,
|
|
||||||
HERDKeys,
|
|
||||||
HERDFiles,
|
|
||||||
HERDEntities,
|
|
||||||
HERDObjects,
|
|
||||||
HERDObjectKeys,
|
|
||||||
HERDEntityKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
|
||||||
VectorData,
|
|
||||||
VectorIndex,
|
|
||||||
ElementIdentifiers,
|
|
||||||
DynamicTableRegion,
|
|
||||||
DynamicTable,
|
|
||||||
AlignedDynamicTable,
|
|
||||||
)
|
|
||||||
from ...hdmf_experimental.v0_5_0.hdmf_experimental_experimental import EnumData
|
|
||||||
from ...core.v2_7_0.core_nwb_retinotopy import (
|
|
||||||
ImagingRetinotopy,
|
|
||||||
ImagingRetinotopyAxis1PhaseMap,
|
|
||||||
ImagingRetinotopyAxis1PowerMap,
|
|
||||||
ImagingRetinotopyAxis2PhaseMap,
|
|
||||||
ImagingRetinotopyAxis2PowerMap,
|
|
||||||
ImagingRetinotopyFocalDepthImage,
|
|
||||||
ImagingRetinotopySignMap,
|
|
||||||
ImagingRetinotopyVasculatureImage,
|
|
||||||
)
|
|
||||||
from ...core.v2_7_0.core_nwb_base import (
|
from ...core.v2_7_0.core_nwb_base import (
|
||||||
NWBData,
|
NWBData,
|
||||||
TimeSeriesReferenceVectorData,
|
TimeSeriesReferenceVectorData,
|
||||||
|
@ -51,26 +21,8 @@ from ...core.v2_7_0.core_nwb_base import (
|
||||||
ProcessingModule,
|
ProcessingModule,
|
||||||
Images,
|
Images,
|
||||||
)
|
)
|
||||||
from ...core.v2_7_0.core_nwb_ophys import (
|
|
||||||
OnePhotonSeries,
|
|
||||||
TwoPhotonSeries,
|
|
||||||
RoiResponseSeries,
|
|
||||||
DfOverF,
|
|
||||||
Fluorescence,
|
|
||||||
ImageSegmentation,
|
|
||||||
PlaneSegmentation,
|
|
||||||
PlaneSegmentationImageMask,
|
|
||||||
PlaneSegmentationPixelMask,
|
|
||||||
PlaneSegmentationVoxelMask,
|
|
||||||
ImagingPlane,
|
|
||||||
ImagingPlaneManifold,
|
|
||||||
ImagingPlaneOriginCoords,
|
|
||||||
ImagingPlaneGridSpacing,
|
|
||||||
OpticalChannel,
|
|
||||||
MotionCorrection,
|
|
||||||
CorrectedImageStack,
|
|
||||||
)
|
|
||||||
from ...core.v2_7_0.core_nwb_device import Device
|
from ...core.v2_7_0.core_nwb_device import Device
|
||||||
|
from ...core.v2_7_0.core_nwb_epoch import TimeIntervals
|
||||||
from ...core.v2_7_0.core_nwb_image import (
|
from ...core.v2_7_0.core_nwb_image import (
|
||||||
GrayscaleImage,
|
GrayscaleImage,
|
||||||
RGBImage,
|
RGBImage,
|
||||||
|
@ -81,7 +33,19 @@ from ...core.v2_7_0.core_nwb_image import (
|
||||||
OpticalSeries,
|
OpticalSeries,
|
||||||
IndexSeries,
|
IndexSeries,
|
||||||
)
|
)
|
||||||
from ...core.v2_7_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
from ...core.v2_7_0.core_nwb_ecephys import (
|
||||||
|
ElectricalSeries,
|
||||||
|
SpikeEventSeries,
|
||||||
|
FeatureExtraction,
|
||||||
|
EventDetection,
|
||||||
|
EventWaveform,
|
||||||
|
FilteredEphys,
|
||||||
|
LFP,
|
||||||
|
ElectrodeGroup,
|
||||||
|
ElectrodeGroupPosition,
|
||||||
|
ClusterWaveforms,
|
||||||
|
Clustering,
|
||||||
|
)
|
||||||
from ...core.v2_7_0.core_nwb_icephys import (
|
from ...core.v2_7_0.core_nwb_icephys import (
|
||||||
PatchClampSeries,
|
PatchClampSeries,
|
||||||
PatchClampSeriesData,
|
PatchClampSeriesData,
|
||||||
|
@ -116,29 +80,25 @@ from ...core.v2_7_0.core_nwb_icephys import (
|
||||||
ExperimentalConditionsTable,
|
ExperimentalConditionsTable,
|
||||||
ExperimentalConditionsTableRepetitions,
|
ExperimentalConditionsTableRepetitions,
|
||||||
)
|
)
|
||||||
from ...core.v2_7_0.core_nwb_ecephys import (
|
from ...core.v2_7_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||||
ElectricalSeries,
|
from ...core.v2_7_0.core_nwb_ophys import (
|
||||||
SpikeEventSeries,
|
OnePhotonSeries,
|
||||||
FeatureExtraction,
|
TwoPhotonSeries,
|
||||||
EventDetection,
|
RoiResponseSeries,
|
||||||
EventWaveform,
|
DfOverF,
|
||||||
FilteredEphys,
|
Fluorescence,
|
||||||
LFP,
|
ImageSegmentation,
|
||||||
ElectrodeGroup,
|
PlaneSegmentation,
|
||||||
ElectrodeGroupPosition,
|
PlaneSegmentationImageMask,
|
||||||
ClusterWaveforms,
|
PlaneSegmentationPixelMask,
|
||||||
Clustering,
|
PlaneSegmentationVoxelMask,
|
||||||
)
|
ImagingPlane,
|
||||||
from ...core.v2_7_0.core_nwb_behavior import (
|
ImagingPlaneManifold,
|
||||||
SpatialSeries,
|
ImagingPlaneOriginCoords,
|
||||||
SpatialSeriesData,
|
ImagingPlaneGridSpacing,
|
||||||
BehavioralEpochs,
|
OpticalChannel,
|
||||||
BehavioralEvents,
|
MotionCorrection,
|
||||||
BehavioralTimeSeries,
|
CorrectedImageStack,
|
||||||
PupilTracking,
|
|
||||||
EyeTracking,
|
|
||||||
CompassDirection,
|
|
||||||
Position,
|
|
||||||
)
|
)
|
||||||
from ...core.v2_7_0.core_nwb_misc import (
|
from ...core.v2_7_0.core_nwb_misc import (
|
||||||
AbstractFeatureSeries,
|
AbstractFeatureSeries,
|
||||||
|
@ -165,7 +125,47 @@ from ...core.v2_7_0.core_nwb_file import (
|
||||||
Subject,
|
Subject,
|
||||||
SubjectAge,
|
SubjectAge,
|
||||||
)
|
)
|
||||||
from ...core.v2_7_0.core_nwb_epoch import TimeIntervals
|
from ...core.v2_7_0.core_nwb_behavior import (
|
||||||
|
SpatialSeries,
|
||||||
|
SpatialSeriesData,
|
||||||
|
BehavioralEpochs,
|
||||||
|
BehavioralEvents,
|
||||||
|
BehavioralTimeSeries,
|
||||||
|
PupilTracking,
|
||||||
|
EyeTracking,
|
||||||
|
CompassDirection,
|
||||||
|
Position,
|
||||||
|
)
|
||||||
|
from ...core.v2_7_0.core_nwb_retinotopy import (
|
||||||
|
ImagingRetinotopy,
|
||||||
|
ImagingRetinotopyAxis1PhaseMap,
|
||||||
|
ImagingRetinotopyAxis1PowerMap,
|
||||||
|
ImagingRetinotopyAxis2PhaseMap,
|
||||||
|
ImagingRetinotopyAxis2PowerMap,
|
||||||
|
ImagingRetinotopyFocalDepthImage,
|
||||||
|
ImagingRetinotopySignMap,
|
||||||
|
ImagingRetinotopyVasculatureImage,
|
||||||
|
)
|
||||||
|
from ...hdmf_experimental.v0_5_0.hdmf_experimental_experimental import EnumData
|
||||||
|
from ...hdmf_common.v1_8_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
|
from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
||||||
|
VectorData,
|
||||||
|
VectorIndex,
|
||||||
|
ElementIdentifiers,
|
||||||
|
DynamicTableRegion,
|
||||||
|
DynamicTable,
|
||||||
|
AlignedDynamicTable,
|
||||||
|
)
|
||||||
|
from ...hdmf_common.v1_8_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_5_0.hdmf_experimental_resources import (
|
||||||
|
HERD,
|
||||||
|
HERDKeys,
|
||||||
|
HERDFiles,
|
||||||
|
HERDEntities,
|
||||||
|
HERDObjects,
|
||||||
|
HERDObjectKeys,
|
||||||
|
HERDEntityKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "2.7.0"
|
version = "2.7.0"
|
||||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_0.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_0.hdmf_common_table import (
|
from ...hdmf_common.v1_1_0.hdmf_common_table import (
|
||||||
Data,
|
Data,
|
||||||
Index,
|
Index,
|
||||||
|
@ -23,6 +17,12 @@ from ...hdmf_common.v1_1_0.hdmf_common_table import (
|
||||||
Container,
|
Container,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_1_0.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.1.0"
|
version = "1.1.0"
|
||||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_2.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_2.hdmf_common_table import (
|
from ...hdmf_common.v1_1_2.hdmf_common_table import (
|
||||||
Data,
|
Data,
|
||||||
Index,
|
Index,
|
||||||
|
@ -23,6 +17,12 @@ from ...hdmf_common.v1_1_2.hdmf_common_table import (
|
||||||
Container,
|
Container,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_1_2.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.1.2"
|
version = "1.1.2"
|
||||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
||||||
Data,
|
Data,
|
||||||
Index,
|
Index,
|
||||||
|
@ -23,6 +17,12 @@ from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
||||||
Container,
|
Container,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.1.3"
|
version = "1.1.3"
|
||||||
|
|
|
@ -7,12 +7,7 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_2_0.hdmf_common_sparse import (
|
from ...hdmf_common.v1_2_0.hdmf_common_base import Data, Container
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_2_0.hdmf_common_table import (
|
from ...hdmf_common.v1_2_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
VectorIndex,
|
VectorIndex,
|
||||||
|
@ -21,7 +16,12 @@ from ...hdmf_common.v1_2_0.hdmf_common_table import (
|
||||||
VocabData,
|
VocabData,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
from ...hdmf_common.v1_2_0.hdmf_common_base import Data, Container
|
from ...hdmf_common.v1_2_0.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.2.0"
|
version = "1.2.0"
|
||||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_2_1.hdmf_common_sparse import (
|
|
||||||
CSRMatrix,
|
|
||||||
CSRMatrixIndices,
|
|
||||||
CSRMatrixIndptr,
|
|
||||||
CSRMatrixData,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_2_1.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_2_1.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_2_1.hdmf_common_table import (
|
from ...hdmf_common.v1_2_1.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -22,6 +16,12 @@ from ...hdmf_common.v1_2_1.hdmf_common_table import (
|
||||||
VocabData,
|
VocabData,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_2_1.hdmf_common_sparse import (
|
||||||
|
CSRMatrix,
|
||||||
|
CSRMatrixIndices,
|
||||||
|
CSRMatrixIndptr,
|
||||||
|
CSRMatrixData,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.2.1"
|
version = "1.2.1"
|
||||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_3_0.hdmf_common_resources import (
|
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesResources,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_3_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_3_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_3_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_3_0.hdmf_common_table import (
|
from ...hdmf_common.v1_3_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
VectorIndex,
|
VectorIndex,
|
||||||
|
@ -24,6 +16,14 @@ from ...hdmf_common.v1_3_0.hdmf_common_table import (
|
||||||
VocabData,
|
VocabData,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_3_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_common.v1_3_0.hdmf_common_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesResources,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.3.0"
|
version = "1.3.0"
|
||||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_4_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_4_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_4_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -16,6 +15,7 @@ from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
||||||
DynamicTableRegion,
|
DynamicTableRegion,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_4_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.4.0"
|
version = "1.4.0"
|
||||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_5_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.5.0"
|
version = "1.5.0"
|
||||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_5_1.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_5_1.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_5_1.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_5_1.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.5.1"
|
version = "1.5.1"
|
||||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_6_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_6_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_6_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_6_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.6.0"
|
version = "1.6.0"
|
||||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_7_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_7_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_7_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_7_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.7.0"
|
version = "1.7.0"
|
||||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_8_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
|
from ...hdmf_common.v1_8_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "1.8.0"
|
version = "1.8.0"
|
||||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesResources,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_4_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_4_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_4_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -24,7 +16,15 @@ from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
||||||
DynamicTableRegion,
|
DynamicTableRegion,
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
)
|
)
|
||||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
from ...hdmf_common.v1_4_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesResources,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_2_0.hdmf_experimental_resources import (
|
from ...hdmf_experimental.v0_2_0.hdmf_experimental_experimental import EnumData
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesResources,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_5_1.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_5_1.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_5_1.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -25,7 +17,15 @@ from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
from ...hdmf_experimental.v0_2_0.hdmf_experimental_experimental import EnumData
|
from ...hdmf_common.v1_5_1.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_2_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesResources,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_3_0.hdmf_experimental_resources import (
|
from ...hdmf_experimental.v0_3_0.hdmf_experimental_experimental import EnumData
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesFiles,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_6_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_6_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_6_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -25,7 +17,15 @@ from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
from ...hdmf_experimental.v0_3_0.hdmf_experimental_experimental import EnumData
|
from ...hdmf_common.v1_6_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_3_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesFiles,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
|
|
|
@ -7,16 +7,7 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_4_0.hdmf_experimental_resources import (
|
from ...hdmf_experimental.v0_4_0.hdmf_experimental_experimental import EnumData
|
||||||
ExternalResources,
|
|
||||||
ExternalResourcesKeys,
|
|
||||||
ExternalResourcesFiles,
|
|
||||||
ExternalResourcesEntities,
|
|
||||||
ExternalResourcesObjects,
|
|
||||||
ExternalResourcesObjectKeys,
|
|
||||||
ExternalResourcesEntityKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_7_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_7_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_7_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -26,7 +17,16 @@ from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
from ...hdmf_experimental.v0_4_0.hdmf_experimental_experimental import EnumData
|
from ...hdmf_common.v1_7_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_4_0.hdmf_experimental_resources import (
|
||||||
|
ExternalResources,
|
||||||
|
ExternalResourcesKeys,
|
||||||
|
ExternalResourcesFiles,
|
||||||
|
ExternalResourcesEntities,
|
||||||
|
ExternalResourcesObjects,
|
||||||
|
ExternalResourcesObjectKeys,
|
||||||
|
ExternalResourcesEntityKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
|
|
|
@ -7,16 +7,7 @@ import sys
|
||||||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ...hdmf_experimental.v0_5_0.hdmf_experimental_resources import (
|
from ...hdmf_experimental.v0_5_0.hdmf_experimental_experimental import EnumData
|
||||||
HERD,
|
|
||||||
HERDKeys,
|
|
||||||
HERDFiles,
|
|
||||||
HERDEntities,
|
|
||||||
HERDObjects,
|
|
||||||
HERDObjectKeys,
|
|
||||||
HERDEntityKeys,
|
|
||||||
)
|
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
from ...hdmf_common.v1_8_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||||
from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
||||||
VectorData,
|
VectorData,
|
||||||
|
@ -26,7 +17,16 @@ from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
||||||
DynamicTable,
|
DynamicTable,
|
||||||
AlignedDynamicTable,
|
AlignedDynamicTable,
|
||||||
)
|
)
|
||||||
from ...hdmf_experimental.v0_5_0.hdmf_experimental_experimental import EnumData
|
from ...hdmf_common.v1_8_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||||
|
from ...hdmf_experimental.v0_5_0.hdmf_experimental_resources import (
|
||||||
|
HERD,
|
||||||
|
HERDKeys,
|
||||||
|
HERDFiles,
|
||||||
|
HERDEntities,
|
||||||
|
HERDObjects,
|
||||||
|
HERDObjectKeys,
|
||||||
|
HERDEntityKeys,
|
||||||
|
)
|
||||||
|
|
||||||
metamodel_version = "None"
|
metamodel_version = "None"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -105,8 +104,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -119,8 +117,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -132,8 +129,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -145,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -162,8 +157,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -175,8 +169,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -259,8 +258,7 @@ classes:
|
||||||
the ElectricalSeries.
|
the ElectricalSeries.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -274,8 +272,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries description or comments field.
|
properties should be noted in the ElectricalSeries description or comments field.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -388,8 +385,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -105,8 +104,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -119,8 +117,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -132,8 +129,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -145,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -162,8 +157,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -175,8 +169,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -259,8 +258,7 @@ classes:
|
||||||
the ElectricalSeries.
|
the ElectricalSeries.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -274,8 +272,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries description or comments field.
|
properties should be noted in the ElectricalSeries description or comments field.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -388,8 +385,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -105,8 +104,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -119,8 +117,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -132,8 +129,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -145,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -162,8 +157,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -175,8 +169,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -259,8 +258,7 @@ classes:
|
||||||
the ElectricalSeries.
|
the ElectricalSeries.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -274,8 +272,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries description or comments field.
|
properties should be noted in the ElectricalSeries description or comments field.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -388,8 +385,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -105,8 +104,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -119,8 +117,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -132,8 +129,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -145,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -162,8 +157,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -175,8 +169,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -259,8 +258,7 @@ classes:
|
||||||
the ElectricalSeries.
|
the ElectricalSeries.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -274,8 +272,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries description or comments field.
|
properties should be noted in the ElectricalSeries description or comments field.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -562,8 +559,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -105,8 +104,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -119,8 +117,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -132,8 +129,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -145,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -162,8 +157,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -175,8 +169,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -259,8 +258,7 @@ classes:
|
||||||
the ElectricalSeries.
|
the ElectricalSeries.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -274,8 +272,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries description or comments field.
|
properties should be noted in the ElectricalSeries description or comments field.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -568,8 +565,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -297,8 +297,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -105,8 +104,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -119,8 +117,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -132,8 +129,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -145,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -162,8 +157,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -175,8 +169,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -270,8 +269,7 @@ classes:
|
||||||
the ElectricalSeries 'filtering' attribute.
|
the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -285,8 +283,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -568,8 +565,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -337,8 +337,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -105,8 +104,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -119,8 +117,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -132,8 +129,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -145,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -162,8 +157,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -175,8 +169,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -270,8 +269,7 @@ classes:
|
||||||
the ElectricalSeries 'filtering' attribute.
|
the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -285,8 +283,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -568,8 +565,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -366,8 +366,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -103,8 +103,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -117,8 +116,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -131,8 +129,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -157,8 +153,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -174,8 +169,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -187,8 +181,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -270,8 +269,7 @@ classes:
|
||||||
the ElectricalSeries 'filtering' attribute.
|
the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -285,8 +283,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -125,8 +124,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +142,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -568,8 +565,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -366,8 +366,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -103,8 +103,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -117,8 +116,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -131,8 +129,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -157,8 +153,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -174,8 +169,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -187,8 +181,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -270,8 +269,7 @@ classes:
|
||||||
the ElectricalSeries 'filtering' attribute.
|
the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -285,8 +283,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -163,8 +163,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -178,8 +177,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -197,8 +195,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -621,8 +618,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -366,8 +366,7 @@ classes:
|
||||||
description: A collection of processed data.
|
description: A collection of processed data.
|
||||||
is_a: NWBContainer
|
is_a: NWBContainer
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -103,8 +103,7 @@ classes:
|
||||||
events. BehavioralTimeSeries is for continuous data.
|
events. BehavioralTimeSeries is for continuous data.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -117,8 +116,7 @@ classes:
|
||||||
for more details.
|
for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -131,8 +129,7 @@ classes:
|
||||||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -144,8 +141,7 @@ classes:
|
||||||
description: Eye-tracking data, representing pupil size.
|
description: Eye-tracking data, representing pupil size.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -157,8 +153,7 @@ classes:
|
||||||
description: Eye-tracking data, representing direction of gaze.
|
description: Eye-tracking data, representing direction of gaze.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -174,8 +169,7 @@ classes:
|
||||||
be radians or degrees.
|
be radians or degrees.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -187,8 +181,7 @@ classes:
|
||||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
||||||
during experiment acquisition.
|
during experiment acquisition.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -270,8 +269,7 @@ classes:
|
||||||
the ElectricalSeries 'filtering' attribute.
|
the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -285,8 +283,7 @@ classes:
|
||||||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -163,8 +163,7 @@ classes:
|
||||||
for image planes).
|
for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -178,8 +177,7 @@ classes:
|
||||||
for ROIs and for image planes).
|
for ROIs and for image planes).
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -197,8 +195,7 @@ classes:
|
||||||
is required and ROI names should remain consistent between them.
|
is required and ROI names should remain consistent between them.
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
@ -621,8 +618,7 @@ classes:
|
||||||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||||
is_a: NWBDataInterface
|
is_a: NWBDataInterface
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers
|
description: A simple Container for holding onto multiple containers
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers.
|
description: A simple Container for holding onto multiple containers.
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers.
|
description: A simple Container for holding onto multiple containers.
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers.
|
description: A simple Container for holding onto multiple containers.
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
||||||
by a separate DynamicTable stored within the group.
|
by a separate DynamicTable stored within the group.
|
||||||
is_a: DynamicTable
|
is_a: DynamicTable
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers.
|
description: A simple Container for holding onto multiple containers.
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
||||||
by a separate DynamicTable stored within the group.
|
by a separate DynamicTable stored within the group.
|
||||||
is_a: DynamicTable
|
is_a: DynamicTable
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers.
|
description: A simple Container for holding onto multiple containers.
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
||||||
by a separate DynamicTable stored within the group.
|
by a separate DynamicTable stored within the group.
|
||||||
is_a: DynamicTable
|
is_a: DynamicTable
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers.
|
description: A simple Container for holding onto multiple containers.
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
||||||
by a separate DynamicTable stored within the group.
|
by a separate DynamicTable stored within the group.
|
||||||
is_a: DynamicTable
|
is_a: DynamicTable
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
||||||
description: A simple Container for holding onto multiple containers.
|
description: A simple Container for holding onto multiple containers.
|
||||||
is_a: Container
|
is_a: Container
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
||||||
by a separate DynamicTable stored within the group.
|
by a separate DynamicTable stored within the group.
|
||||||
is_a: DynamicTable
|
is_a: DynamicTable
|
||||||
attributes:
|
attributes:
|
||||||
value:
|
- name: value
|
||||||
name: value
|
|
||||||
multivalued: true
|
multivalued: true
|
||||||
inlined: true
|
inlined: true
|
||||||
inlined_as_list: false
|
inlined_as_list: false
|
||||||
|
|
Loading…
Reference in a new issue