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 44import re
55
66import 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
198
209logger = logging .getLogger ("datajoint" )
2110
22- if version_parser (pyopenephys .__version__ ) < version_parser ("1.1.6" ):
23- logger .warning (pyopenephys_warning )
24-
2511"""
2612The Open Ephys Record Node saves Neuropixels data in binary format according to the following the directory structure:
2713(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
22element-interface >= 0.4.0
33openpyxl
44plotly
5+ pyopenephys >= 1.1.6
56seaborn
You can’t perform that action at this time.
0 commit comments