mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2025-01-09 21:54:27 +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,8 +283,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -105,8 +104,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -119,8 +117,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -132,8 +129,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -145,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -162,8 +157,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -175,8 +169,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -259,8 +258,7 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -274,8 +272,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -388,8 +385,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -105,8 +104,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -119,8 +117,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -132,8 +129,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -145,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -162,8 +157,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -175,8 +169,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -259,8 +258,7 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -274,8 +272,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -388,8 +385,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -105,8 +104,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -119,8 +117,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -132,8 +129,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -145,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -162,8 +157,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -175,8 +169,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -259,8 +258,7 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -274,8 +272,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -388,8 +385,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -105,8 +104,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -119,8 +117,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -132,8 +129,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -145,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -162,8 +157,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -175,8 +169,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -259,8 +258,7 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -274,8 +272,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -562,8 +559,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -283,8 +283,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -105,8 +104,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -119,8 +117,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -132,8 +129,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -145,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -162,8 +157,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -175,8 +169,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -236,8 +236,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -259,8 +258,7 @@ classes:
|
|||
the ElectricalSeries.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -274,8 +272,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries description or comments field.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -568,8 +565,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -297,8 +297,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -105,8 +104,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -119,8 +117,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -132,8 +129,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -145,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -162,8 +157,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -175,8 +169,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -270,8 +269,7 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -285,8 +283,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -568,8 +565,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -337,8 +337,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -91,8 +91,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -105,8 +104,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -119,8 +117,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -132,8 +129,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -145,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -162,8 +157,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -175,8 +169,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -270,8 +269,7 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -285,8 +283,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -568,8 +565,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -366,8 +366,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -103,8 +103,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -117,8 +116,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -131,8 +129,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -157,8 +153,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -174,8 +169,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -187,8 +181,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -270,8 +269,7 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -285,8 +283,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -110,8 +110,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -125,8 +124,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +142,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -568,8 +565,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -366,8 +366,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -103,8 +103,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -117,8 +116,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -131,8 +129,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -157,8 +153,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -174,8 +169,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -187,8 +181,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -270,8 +269,7 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -285,8 +283,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -163,8 +163,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -178,8 +177,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -197,8 +195,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -621,8 +618,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -366,8 +366,7 @@ classes:
|
|||
description: A collection of processed data.
|
||||
is_a: NWBContainer
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -103,8 +103,7 @@ classes:
|
|||
events. BehavioralTimeSeries is for continuous data.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -117,8 +116,7 @@ classes:
|
|||
for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -131,8 +129,7 @@ classes:
|
|||
of <a href="#BehavioralEpochs">BehavioralEpochs</a> for more details.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -144,8 +141,7 @@ classes:
|
|||
description: Eye-tracking data, representing pupil size.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -157,8 +153,7 @@ classes:
|
|||
description: Eye-tracking data, representing direction of gaze.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -174,8 +169,7 @@ classes:
|
|||
be radians or degrees.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -187,8 +181,7 @@ classes:
|
|||
description: Position data, whether along the x, x/y or x/y/z axis.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -247,8 +247,7 @@ classes:
|
|||
during experiment acquisition.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -270,8 +269,7 @@ classes:
|
|||
the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -285,8 +283,7 @@ classes:
|
|||
properties should be noted in the ElectricalSeries 'filtering' attribute.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -163,8 +163,7 @@ classes:
|
|||
for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -178,8 +177,7 @@ classes:
|
|||
for ROIs and for image planes).
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -197,8 +195,7 @@ classes:
|
|||
is required and ROI names should remain consistent between them.
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
@ -621,8 +618,7 @@ classes:
|
|||
frame at each point in time is assumed to be 2-D (has only x & y dimensions).'
|
||||
is_a: NWBDataInterface
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -36,8 +36,7 @@ classes:
|
|||
description: A simple Container for holding onto multiple containers.
|
||||
is_a: Container
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
|
@ -182,8 +182,7 @@ classes:
|
|||
by a separate DynamicTable stored within the group.
|
||||
is_a: DynamicTable
|
||||
attributes:
|
||||
value:
|
||||
name: value
|
||||
- name: value
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: false
|
||||
|
|
Loading…
Reference in a new issue