Skip to content

Commit 5f203ad

Browse files
authored
Merge pull request #228 from NeurodataWithoutBorders/release/2.2.5
Schema Release 2.2.5
2 parents 0774cda + 17663a2 commit 5f203ad

File tree

5 files changed

+24
-16
lines changed

5 files changed

+24
-16
lines changed

NwbFile.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ function export(obj, filename)
7979
end
8080

8181
function objectMap = searchFor(obj, typename, varargin)
82-
% Searches this NwbFile object for a given typename (either with
83-
% full namespace or not.
82+
% Searches this NwbFile object for a given typename
83+
% Including the full namespace is optional.
8484
% WARNING: The returned paths are resolvable but do not necessarily
85-
% indicate a real HDF5 path. Their only usage is to be resolvable.
85+
% indicate a real HDF5 path. Their only function is to be resolvable.
8686
objectMap = searchProperties(...
8787
containers.Map,...
8888
obj,...

doc/NwbFile.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<head>
33
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
44

5-
<link rel="stylesheet" href="../helpwin.css">
5+
<link rel="stylesheet" href="./helpwin.css">
66
<title>NwbFile - MATLAB File Help</title>
77
</head>
88
<body>
@@ -381,6 +381,14 @@
381381
<td class="name">resolve</td>
382382
<td class="m-help">&nbsp;</td>
383383
</tr>
384+
<tr class="summary-item">
385+
<td class="attributes">
386+
&nbsp;
387+
388+
</td>
389+
<td class="name">searchFor</td>
390+
<td class="m-help">Searches this NwbFile object for a given typename&nbsp;</td>
391+
</tr>
384392
<tr class="summary-item">
385393
<td class="attributes">
386394
&nbsp;

nwb-schema/core/nwb.file.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ groups:
77
attributes:
88
- name: nwb_version
99
dtype: text
10-
value: 2.2.4
10+
value: 2.2.5
1111
doc: File version string. Use semantic versioning, e.g. 1.2.1. This will be the
1212
name of the format with trailing major, minor and patch numbers.
1313
datasets:

nwb-schema/core/nwb.namespace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ namespaces:
5757
- doc: This source module contains neurodata_type for retinotopy data.
5858
source: nwb.retinotopy.yaml
5959
title: Retinotopy
60-
version: 2.2.4
60+
version: 2.2.5

nwb-schema/core/nwb.ophys.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ groups:
1717
- name: field_of_view
1818
dtype: float32
1919
dims:
20-
- width|height
21-
- width|height|depth
20+
- - width|height
21+
- - width|height|depth
2222
shape:
2323
- - 2
2424
- - 3
@@ -232,11 +232,11 @@ groups:
232232
- name: origin_coords
233233
dtype: float32
234234
dims:
235-
- x, y
236-
- x, y, z
235+
- - x, y
236+
- - x, y, z
237237
shape:
238-
- 2
239-
- 3
238+
- - 2
239+
- - 3
240240
doc: Physical location of the first element of the imaging plane (0, 0) for 2-D data or (0, 0, 0) for 3-D data.
241241
See also reference_frame for what the physical location is relative to (e.g., bregma).
242242
quantity: '?'
@@ -248,11 +248,11 @@ groups:
248248
- name: grid_spacing
249249
dtype: float32
250250
dims:
251-
- x, y
252-
- x, y, z
251+
- - x, y
252+
- - x, y, z
253253
shape:
254-
- 2
255-
- 3
254+
- - 2
255+
- - 3
256256
doc: Space between pixels in (x, y) or voxels in (x, y, z) directions, in the specified unit.
257257
Assumes imaging plane is a regular grid. See also reference_frame to interpret the grid.
258258
quantity: '?'

0 commit comments

Comments
 (0)