You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: +file/Attribute.m
+2
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
readonly; %determines whether value can be changed or not
8
8
dtype; %type of value
9
9
dependent; %set externally. If the attribute is actually dependent on an untyped dataset/group
10
+
dependent_fullname; %set externally. This is the full name, including names of potential parent groups separated by underscore. A value will only be present if it would differ from dependent.
Copy file name to clipboardexpand all lines: +types/+core/ElectricalSeries.m
+1-4
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
% READONLY PROPERTIES
9
9
properties(SetAccess=protected)
10
-
channel_conversion_axis; % (int32) The zero-indexed axis of the 'data' dataset that the channel-specific conversion factor corresponds to. This value is fixed to 1.
10
+
channel_conversion_axis=1; % (int32) The zero-indexed axis of the 'data' dataset that the channel-specific conversion factor corresponds to. This value is fixed to 1.
11
11
end
12
12
% REQUIRED PROPERTIES
13
13
properties
@@ -180,9 +180,6 @@
180
180
if ~isempty(obj.channel_conversion) && ~isa(obj.channel_conversion, 'types.untyped.SoftLink') && ~isa(obj.channel_conversion, 'types.untyped.ExternalLink')
Copy file name to clipboardexpand all lines: +types/+core/ImageSeries.m
+7-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
dimension; % (int32) Number of pixels on x, y, (and z) axes.
12
12
external_file; % (char) Paths to one or more external file(s). The field is only present if format='external'. This is only relevant if the image series is stored in the file system as one or more image file(s). This field should NOT be used if the image is stored in another NWB file and that file is linked to this file.
13
13
external_file_starting_frame; % (int32) Each external image may contain one or more consecutive frames of the full ImageSeries. This attribute serves as an index to indicate which frames each file contains, to facilitate random access. The 'starting_frame' attribute, hence, contains a list of frame numbers within the full ImageSeries of the first frame of each file listed in the parent 'external_file' dataset. Zero-based indexing is used (hence, the first element will always be zero). For example, if the 'external_file' dataset has three paths to files and the first file has 5 frames, the second file has 10 frames, and the third file has 20 frames, then this attribute will have values [0, 5, 15]. If there is a single external file that holds all of the frames of the ImageSeries (and so there is a single element in the 'external_file' dataset), then this attribute should have value [0].
14
-
format; % (char) Format of image. If this is 'external', then the attribute 'external_file' contains the path information to the image files. If this is 'raw', then the raw (single-channel) binary data is stored in the 'data' dataset. If this attribute is not present, then the default format='raw' case is assumed.
14
+
format="raw"; % (char) Format of image. If this is 'external', then the attribute 'external_file' contains the path information to the image files. If this is 'raw', then the raw (single-channel) binary data is stored in the 'data' dataset. If this attribute is not present, then the default format='raw' case is assumed.
0 commit comments