File tree Expand file tree Collapse file tree 2 files changed +2
-15
lines changed
element_array_ephys/readers Expand file tree Collapse file tree 2 files changed +2
-15
lines changed Original file line number Diff line number Diff line change 4
4
import re
5
5
6
6
import numpy as np
7
- from packaging .version import parse as version_parser
8
-
9
- pyopenephys_warning = (
10
- "It is recommended that you use DataJoint's fork of pyopenephys.\n "
11
- + "Please install with the following command:\n "
12
- + "pip install git+https://github.com/datajoint-company/pyopenephys.git"
13
- )
14
-
15
- try :
16
- import pyopenephys
17
- except ImportError :
18
- raise ImportError (pyopenephys_warning )
7
+ import pyopenephys
19
8
20
9
logger = logging .getLogger ("datajoint" )
21
10
22
- if version_parser (pyopenephys .__version__ ) < version_parser ("1.1.6" ):
23
- logger .warning (pyopenephys_warning )
24
-
25
11
"""
26
12
The Open Ephys Record Node saves Neuropixels data in binary format according to the following the directory structure:
27
13
(https://open-ephys.github.io/gui-docs/User-Manual/Recording-data/Binary-format.html)
Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ datajoint>=0.13
2
2
element-interface >= 0.4.0
3
3
openpyxl
4
4
plotly
5
+ pyopenephys >= 1.1.6
5
6
seaborn
You can’t perform that action at this time.
0 commit comments