There was an error while loading. Please reload this page.
1 parent 17255cf commit 570939cCopy full SHA for 570939c
2 files changed
bil/api/formatS.py
@@ -402,7 +402,7 @@ def _get_30k(
402
channel_slice = self.study.subject.region_chs[region_name]
403
data.append(h5_dataset[channel_slice, start:stop])
404
truncate = min(x.shape[-1] for x in data)
405
- output = np.row_stack([x[..., :truncate] for x in data])
+ output = np.vstack([x[..., :truncate] for x in data])
406
return output
407
408
def _neural(
pyproject.toml
@@ -7,7 +7,7 @@ build-backend = "uv_build"
7
8
[project]
9
name = "bilab"
10
-version = "0.1.4"
+version = "0.1.5"
11
description = "A data API for the Brain Interfacing Laboratory"
12
readme = "README.md"
13
requires-python = ">=3.9"
0 commit comments