File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,8 @@ def make(self, key):
157
157
else :
158
158
raise FileNotFoundError (
159
159
f'Ephys recording data not found!'
160
- f' Neither SpikeGLX nor Open Ephys recording files found' )
160
+ f' Neither SpikeGLX nor Open Ephys recording files found'
161
+ f' in { session_dir } ' )
161
162
162
163
if acq_software == 'SpikeGLX' :
163
164
for meta_filepath in ephys_meta_filepaths :
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ def get_session_directory(session_key: dict) -> str:
89
89
90
90
@schema
91
91
class AcquisitionSoftware (dj .Lookup ):
92
- definition = """ # Name of software used for recording of neuropixels probes - SpikeGLX or Open Ephys
92
+ definition = """ # Software used for recording of neuropixels probes
93
93
acq_software: varchar(24)
94
94
"""
95
95
contents = zip (['SpikeGLX' , 'Open Ephys' ])
@@ -158,7 +158,8 @@ def make(self, key):
158
158
else :
159
159
raise FileNotFoundError (
160
160
f'Ephys recording data not found!'
161
- f' Neither SpikeGLX nor Open Ephys recording files found' )
161
+ f' Neither SpikeGLX nor Open Ephys recording files found'
162
+ f' in { session_dir } ' )
162
163
163
164
if acq_software == 'SpikeGLX' :
164
165
for meta_filepath in ephys_meta_filepaths :
You can’t perform that action at this time.
0 commit comments