mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +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 pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
Image,
|
||||
|
@ -52,21 +19,31 @@ from ...core.v2_2_0.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -89,29 +66,19 @@ from ...core.v2_2_0.core_nwb_icephys import (
|
|||
IntracellularElectrode,
|
||||
SweepTable,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_2_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -135,7 +102,40 @@ from ...core.v2_2_0.core_nwb_file import (
|
|||
GeneralIntracellularEphys,
|
||||
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"
|
||||
version = "2.2.0"
|
||||
|
|
|
@ -7,39 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
Image,
|
||||
|
@ -52,21 +19,31 @@ from ...core.v2_2_1.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -89,29 +66,19 @@ from ...core.v2_2_1.core_nwb_icephys import (
|
|||
IntracellularElectrode,
|
||||
SweepTable,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_2_1.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -135,7 +102,40 @@ from ...core.v2_2_1.core_nwb_file import (
|
|||
GeneralIntracellularEphys,
|
||||
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"
|
||||
version = "2.2.1"
|
||||
|
|
|
@ -7,32 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
Image,
|
||||
|
@ -45,20 +19,8 @@ from ...core.v2_2_2.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||
from ...core.v2_2_2.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -69,7 +31,19 @@ from ...core.v2_2_2.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -92,29 +66,19 @@ from ...core.v2_2_2.core_nwb_icephys import (
|
|||
IntracellularElectrode,
|
||||
SweepTable,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_2_2.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -138,7 +102,43 @@ from ...core.v2_2_2.core_nwb_file import (
|
|||
GeneralIntracellularEphys,
|
||||
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"
|
||||
version = "2.2.2"
|
||||
|
|
|
@ -7,32 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
Image,
|
||||
|
@ -45,25 +19,8 @@ from ...core.v2_2_4.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||
from ...core.v2_2_4.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -74,7 +31,19 @@ from ...core.v2_2_4.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -97,29 +66,24 @@ from ...core.v2_2_4.core_nwb_icephys import (
|
|||
IntracellularElectrode,
|
||||
SweepTable,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_2_4.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -145,7 +109,43 @@ from ...core.v2_2_4.core_nwb_file import (
|
|||
LabMetaData,
|
||||
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"
|
||||
version = "2.2.4"
|
||||
|
|
|
@ -7,32 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
Image,
|
||||
|
@ -45,25 +19,8 @@ from ...core.v2_2_5.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||
from ...core.v2_2_5.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -74,7 +31,19 @@ from ...core.v2_2_5.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -97,29 +66,24 @@ from ...core.v2_2_5.core_nwb_icephys import (
|
|||
IntracellularElectrode,
|
||||
SweepTable,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_2_5.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -145,7 +109,43 @@ from ...core.v2_2_5.core_nwb_file import (
|
|||
LabMetaData,
|
||||
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"
|
||||
version = "2.2.5"
|
||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
Image,
|
||||
|
@ -48,25 +19,8 @@ from ...core.v2_3_0.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||
from ...core.v2_3_0.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -77,7 +31,19 @@ from ...core.v2_3_0.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -100,29 +66,24 @@ from ...core.v2_3_0.core_nwb_icephys import (
|
|||
IntracellularElectrode,
|
||||
SweepTable,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_3_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -148,7 +109,46 @@ from ...core.v2_3_0.core_nwb_file import (
|
|||
LabMetaData,
|
||||
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"
|
||||
version = "2.3.0"
|
||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
TimeSeriesReferenceVectorData,
|
||||
|
@ -49,25 +20,8 @@ from ...core.v2_4_0.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals, TimeIntervalsTimeseries
|
||||
from ...core.v2_4_0.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -78,7 +32,19 @@ from ...core.v2_4_0.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -113,29 +79,24 @@ from ...core.v2_4_0.core_nwb_icephys import (
|
|||
ExperimentalConditionsTable,
|
||||
ExperimentalConditionsTableRepetitions,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_4_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -161,7 +122,46 @@ from ...core.v2_4_0.core_nwb_file import (
|
|||
LabMetaData,
|
||||
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"
|
||||
version = "2.4.0"
|
||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
TimeSeriesReferenceVectorData,
|
||||
|
@ -50,25 +21,8 @@ from ...core.v2_5_0.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals
|
||||
from ...core.v2_5_0.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -79,7 +33,19 @@ from ...core.v2_5_0.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -114,29 +80,24 @@ from ...core.v2_5_0.core_nwb_icephys import (
|
|||
ExperimentalConditionsTable,
|
||||
ExperimentalConditionsTableRepetitions,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_5_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -162,7 +123,46 @@ from ...core.v2_5_0.core_nwb_file import (
|
|||
LabMetaData,
|
||||
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"
|
||||
version = "2.5.0"
|
||||
|
|
|
@ -7,35 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
TimeSeriesReferenceVectorData,
|
||||
|
@ -50,26 +21,8 @@ from ...core.v2_6_0_alpha.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals
|
||||
from ...core.v2_6_0_alpha.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -80,7 +33,19 @@ from ...core.v2_6_0_alpha.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -115,29 +80,25 @@ from ...core.v2_6_0_alpha.core_nwb_icephys import (
|
|||
ExperimentalConditionsTable,
|
||||
ExperimentalConditionsTableRepetitions,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_6_0_alpha.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -164,7 +125,46 @@ from ...core.v2_6_0_alpha.core_nwb_file import (
|
|||
Subject,
|
||||
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"
|
||||
version = "2.6.0-alpha"
|
||||
|
|
|
@ -7,36 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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 (
|
||||
NWBData,
|
||||
TimeSeriesReferenceVectorData,
|
||||
|
@ -51,26 +21,8 @@ from ...core.v2_7_0.core_nwb_base import (
|
|||
ProcessingModule,
|
||||
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_epoch import TimeIntervals
|
||||
from ...core.v2_7_0.core_nwb_image import (
|
||||
GrayscaleImage,
|
||||
RGBImage,
|
||||
|
@ -81,7 +33,19 @@ from ...core.v2_7_0.core_nwb_image import (
|
|||
OpticalSeries,
|
||||
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 (
|
||||
PatchClampSeries,
|
||||
PatchClampSeriesData,
|
||||
|
@ -116,29 +80,25 @@ from ...core.v2_7_0.core_nwb_icephys import (
|
|||
ExperimentalConditionsTable,
|
||||
ExperimentalConditionsTableRepetitions,
|
||||
)
|
||||
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_behavior import (
|
||||
SpatialSeries,
|
||||
SpatialSeriesData,
|
||||
BehavioralEpochs,
|
||||
BehavioralEvents,
|
||||
BehavioralTimeSeries,
|
||||
PupilTracking,
|
||||
EyeTracking,
|
||||
CompassDirection,
|
||||
Position,
|
||||
from ...core.v2_7_0.core_nwb_ogen import OptogeneticSeries, OptogeneticStimulusSite
|
||||
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_misc import (
|
||||
AbstractFeatureSeries,
|
||||
|
@ -165,7 +125,47 @@ from ...core.v2_7_0.core_nwb_file import (
|
|||
Subject,
|
||||
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"
|
||||
version = "2.7.0"
|
||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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,
|
||||
|
@ -23,6 +17,12 @@ from ...hdmf_common.v1_1_0.hdmf_common_table import (
|
|||
Container,
|
||||
DynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_1_0.hdmf_common_sparse import (
|
||||
CSRMatrix,
|
||||
CSRMatrixIndices,
|
||||
CSRMatrixIndptr,
|
||||
CSRMatrixData,
|
||||
)
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.1.0"
|
||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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,
|
||||
|
@ -23,6 +17,12 @@ from ...hdmf_common.v1_1_2.hdmf_common_table import (
|
|||
Container,
|
||||
DynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_1_2.hdmf_common_sparse import (
|
||||
CSRMatrix,
|
||||
CSRMatrixIndices,
|
||||
CSRMatrixIndptr,
|
||||
CSRMatrixData,
|
||||
)
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.1.2"
|
||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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,
|
||||
|
@ -23,6 +17,12 @@ from ...hdmf_common.v1_1_3.hdmf_common_table import (
|
|||
Container,
|
||||
DynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_1_3.hdmf_common_sparse import (
|
||||
CSRMatrix,
|
||||
CSRMatrixIndices,
|
||||
CSRMatrixIndptr,
|
||||
CSRMatrixData,
|
||||
)
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.1.3"
|
||||
|
|
|
@ -7,12 +7,7 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
import numpy as np
|
||||
from ...hdmf_common.v1_2_0.hdmf_common_sparse import (
|
||||
CSRMatrix,
|
||||
CSRMatrixIndices,
|
||||
CSRMatrixIndptr,
|
||||
CSRMatrixData,
|
||||
)
|
||||
from ...hdmf_common.v1_2_0.hdmf_common_base import Data, Container
|
||||
from ...hdmf_common.v1_2_0.hdmf_common_table import (
|
||||
VectorData,
|
||||
VectorIndex,
|
||||
|
@ -21,7 +16,12 @@ from ...hdmf_common.v1_2_0.hdmf_common_table import (
|
|||
VocabData,
|
||||
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"
|
||||
version = "1.2.0"
|
||||
|
|
|
@ -7,12 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_table import (
|
||||
VectorData,
|
||||
|
@ -22,6 +16,12 @@ from ...hdmf_common.v1_2_1.hdmf_common_table import (
|
|||
VocabData,
|
||||
DynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_2_1.hdmf_common_sparse import (
|
||||
CSRMatrix,
|
||||
CSRMatrixIndices,
|
||||
CSRMatrixIndptr,
|
||||
CSRMatrixData,
|
||||
)
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.2.1"
|
||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_sparse import CSRMatrix, CSRMatrixData
|
||||
from ...hdmf_common.v1_3_0.hdmf_common_table import (
|
||||
VectorData,
|
||||
VectorIndex,
|
||||
|
@ -24,6 +16,14 @@ from ...hdmf_common.v1_3_0.hdmf_common_table import (
|
|||
VocabData,
|
||||
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"
|
||||
version = "1.3.0"
|
||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_table import (
|
||||
VectorData,
|
||||
|
@ -16,6 +15,7 @@ from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
|||
DynamicTableRegion,
|
||||
DynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_4_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.4.0"
|
||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_table import (
|
||||
VectorData,
|
||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_5_0.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
AlignedDynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_5_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.5.0"
|
||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_table import (
|
||||
VectorData,
|
||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
AlignedDynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_5_1.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.5.1"
|
||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_table import (
|
||||
VectorData,
|
||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
AlignedDynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_6_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.6.0"
|
||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_table import (
|
||||
VectorData,
|
||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
AlignedDynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_7_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.7.0"
|
||||
|
|
|
@ -7,7 +7,6 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_table import (
|
||||
VectorData,
|
||||
|
@ -17,6 +16,7 @@ from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
AlignedDynamicTable,
|
||||
)
|
||||
from ...hdmf_common.v1_8_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
|
||||
metamodel_version = "None"
|
||||
version = "1.8.0"
|
||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
import numpy as np
|
||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_resources import (
|
||||
ExternalResources,
|
||||
ExternalResourcesKeys,
|
||||
ExternalResourcesEntities,
|
||||
ExternalResourcesResources,
|
||||
ExternalResourcesObjects,
|
||||
ExternalResourcesObjectKeys,
|
||||
)
|
||||
from ...hdmf_common.v1_4_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
from ...hdmf_experimental.v0_1_0.hdmf_experimental_experimental import EnumData
|
||||
from ...hdmf_common.v1_4_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||
from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
||||
VectorData,
|
||||
|
@ -24,7 +16,15 @@ from ...hdmf_common.v1_4_0.hdmf_common_table import (
|
|||
DynamicTableRegion,
|
||||
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"
|
||||
version = "0.1.0"
|
||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
import numpy as np
|
||||
from ...hdmf_experimental.v0_2_0.hdmf_experimental_resources import (
|
||||
ExternalResources,
|
||||
ExternalResourcesKeys,
|
||||
ExternalResourcesEntities,
|
||||
ExternalResourcesResources,
|
||||
ExternalResourcesObjects,
|
||||
ExternalResourcesObjectKeys,
|
||||
)
|
||||
from ...hdmf_common.v1_5_1.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
from ...hdmf_experimental.v0_2_0.hdmf_experimental_experimental import EnumData
|
||||
from ...hdmf_common.v1_5_1.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||
from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
||||
VectorData,
|
||||
|
@ -25,7 +17,15 @@ from ...hdmf_common.v1_5_1.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
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"
|
||||
version = "0.2.0"
|
||||
|
|
|
@ -7,15 +7,7 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
import numpy as np
|
||||
from ...hdmf_experimental.v0_3_0.hdmf_experimental_resources import (
|
||||
ExternalResources,
|
||||
ExternalResourcesKeys,
|
||||
ExternalResourcesFiles,
|
||||
ExternalResourcesEntities,
|
||||
ExternalResourcesObjects,
|
||||
ExternalResourcesObjectKeys,
|
||||
)
|
||||
from ...hdmf_common.v1_6_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
from ...hdmf_experimental.v0_3_0.hdmf_experimental_experimental import EnumData
|
||||
from ...hdmf_common.v1_6_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||
from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
||||
VectorData,
|
||||
|
@ -25,7 +17,15 @@ from ...hdmf_common.v1_6_0.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
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"
|
||||
version = "0.3.0"
|
||||
|
|
|
@ -7,16 +7,7 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
import numpy as np
|
||||
from ...hdmf_experimental.v0_4_0.hdmf_experimental_resources import (
|
||||
ExternalResources,
|
||||
ExternalResourcesKeys,
|
||||
ExternalResourcesFiles,
|
||||
ExternalResourcesEntities,
|
||||
ExternalResourcesObjects,
|
||||
ExternalResourcesObjectKeys,
|
||||
ExternalResourcesEntityKeys,
|
||||
)
|
||||
from ...hdmf_common.v1_7_0.hdmf_common_sparse import CSRMatrix, CSRMatrixData
|
||||
from ...hdmf_experimental.v0_4_0.hdmf_experimental_experimental import EnumData
|
||||
from ...hdmf_common.v1_7_0.hdmf_common_base import Data, Container, SimpleMultiContainer
|
||||
from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
||||
VectorData,
|
||||
|
@ -26,7 +17,16 @@ from ...hdmf_common.v1_7_0.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
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"
|
||||
version = "0.4.0"
|
||||
|
|
|
@ -7,16 +7,7 @@ import sys
|
|||
from typing import Any, ClassVar, List, Literal, Dict, Optional, Union
|
||||
from pydantic import BaseModel, ConfigDict, Field, RootModel, field_validator
|
||||
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_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,
|
||||
|
@ -26,7 +17,16 @@ from ...hdmf_common.v1_8_0.hdmf_common_table import (
|
|||
DynamicTable,
|
||||
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"
|
||||
version = "0.5.0"
|
||||
|
|
|
@ -283,14 +283,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -91,13 +91,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -105,13 +104,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -119,39 +117,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -162,24 +157,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -236,13 +236,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -259,13 +258,12 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -274,13 +272,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
ImagingPlane:
|
||||
name: ImagingPlane
|
||||
|
@ -388,11 +385,10 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
tree_root: true
|
||||
|
|
|
@ -283,14 +283,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -91,13 +91,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -105,13 +104,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -119,39 +117,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -162,24 +157,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -236,13 +236,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -259,13 +258,12 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -274,13 +272,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
ImagingPlane:
|
||||
name: ImagingPlane
|
||||
|
@ -388,11 +385,10 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
tree_root: true
|
||||
|
|
|
@ -283,14 +283,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -91,13 +91,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -105,13 +104,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -119,39 +117,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -162,24 +157,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -236,13 +236,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -259,13 +258,12 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -274,13 +272,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
ImagingPlane:
|
||||
name: ImagingPlane
|
||||
|
@ -388,11 +385,10 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
tree_root: true
|
||||
|
|
|
@ -283,14 +283,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -91,13 +91,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -105,13 +104,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -119,39 +117,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -162,24 +157,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -236,13 +236,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -259,13 +258,12 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -274,13 +272,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
tree_root: true
|
||||
PlaneSegmentation:
|
||||
name: PlaneSegmentation
|
||||
|
@ -562,13 +559,12 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
tree_root: true
|
||||
CorrectedImageStack:
|
||||
name: CorrectedImageStack
|
||||
|
|
|
@ -283,14 +283,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -91,13 +91,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -105,13 +104,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -119,39 +117,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -162,24 +157,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -236,13 +236,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -259,13 +258,12 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -274,13 +272,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
tree_root: true
|
||||
PlaneSegmentation:
|
||||
name: PlaneSegmentation
|
||||
|
@ -568,13 +565,12 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
tree_root: true
|
||||
CorrectedImageStack:
|
||||
name: CorrectedImageStack
|
||||
|
|
|
@ -297,14 +297,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -91,13 +91,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -105,13 +104,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -119,39 +117,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -162,24 +157,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -247,13 +247,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -270,13 +269,12 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -285,13 +283,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
tree_root: true
|
||||
PlaneSegmentation:
|
||||
name: PlaneSegmentation
|
||||
|
@ -568,13 +565,12 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
tree_root: true
|
||||
CorrectedImageStack:
|
||||
name: CorrectedImageStack
|
||||
|
|
|
@ -337,14 +337,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -91,13 +91,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -105,13 +104,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -119,39 +117,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -162,24 +157,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -247,13 +247,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -270,13 +269,12 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -285,13 +283,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
tree_root: true
|
||||
PlaneSegmentation:
|
||||
name: PlaneSegmentation
|
||||
|
@ -568,13 +565,12 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
tree_root: true
|
||||
CorrectedImageStack:
|
||||
name: CorrectedImageStack
|
||||
|
|
|
@ -366,14 +366,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -103,13 +103,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -117,13 +116,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -131,39 +129,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -174,24 +169,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -247,13 +247,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -270,13 +269,12 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -285,13 +283,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -110,13 +110,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -125,13 +124,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -144,13 +142,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
tree_root: true
|
||||
PlaneSegmentation:
|
||||
name: PlaneSegmentation
|
||||
|
@ -568,13 +565,12 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
tree_root: true
|
||||
CorrectedImageStack:
|
||||
name: CorrectedImageStack
|
||||
|
|
|
@ -366,14 +366,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -103,13 +103,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -117,13 +116,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -131,39 +129,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -174,24 +169,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -247,13 +247,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -270,13 +269,12 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -285,13 +283,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -163,13 +163,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -178,13 +177,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -197,13 +195,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
tree_root: true
|
||||
PlaneSegmentation:
|
||||
name: PlaneSegmentation
|
||||
|
@ -621,13 +618,12 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
tree_root: true
|
||||
CorrectedImageStack:
|
||||
name: CorrectedImageStack
|
||||
|
|
|
@ -366,14 +366,13 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: NWBDataInterface
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
Images:
|
||||
name: Images
|
||||
|
|
|
@ -103,13 +103,12 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: IntervalSeries
|
||||
tree_root: true
|
||||
BehavioralEvents:
|
||||
name: BehavioralEvents
|
||||
|
@ -117,13 +116,12 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
BehavioralTimeSeries:
|
||||
name: BehavioralTimeSeries
|
||||
|
@ -131,39 +129,36 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
PupilTracking:
|
||||
name: PupilTracking
|
||||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: TimeSeries
|
||||
tree_root: true
|
||||
EyeTracking:
|
||||
name: EyeTracking
|
||||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
CompassDirection:
|
||||
name: CompassDirection
|
||||
|
@ -174,24 +169,22 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
Position:
|
||||
name: Position
|
||||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpatialSeries
|
||||
tree_root: true
|
||||
|
|
|
@ -247,13 +247,12 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: SpikeEventSeries
|
||||
tree_root: true
|
||||
FilteredEphys:
|
||||
name: FilteredEphys
|
||||
|
@ -270,13 +269,12 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
LFP:
|
||||
name: LFP
|
||||
|
@ -285,13 +283,12 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: ElectricalSeries
|
||||
tree_root: true
|
||||
ElectrodeGroup:
|
||||
name: ElectrodeGroup
|
||||
|
|
|
@ -163,13 +163,12 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
Fluorescence:
|
||||
name: Fluorescence
|
||||
|
@ -178,13 +177,12 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: RoiResponseSeries
|
||||
tree_root: true
|
||||
ImageSegmentation:
|
||||
name: ImageSegmentation
|
||||
|
@ -197,13 +195,12 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: PlaneSegmentation
|
||||
tree_root: true
|
||||
PlaneSegmentation:
|
||||
name: PlaneSegmentation
|
||||
|
@ -621,13 +618,12 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: CorrectedImageStack
|
||||
tree_root: true
|
||||
CorrectedImageStack:
|
||||
name: CorrectedImageStack
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -182,11 +182,10 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -182,11 +182,10 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -182,11 +182,10 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -182,11 +182,10 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
|
|
|
@ -36,11 +36,10 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: Container
|
||||
tree_root: true
|
||||
|
|
|
@ -182,11 +182,10 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
any_of:
|
||||
- range: DynamicTable
|
||||
tree_root: true
|
||||
|
|
Loading…
Reference in a new issue