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):
157157 else :
158158 raise FileNotFoundError (
159159 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 } ' )
161162
162163 if acq_software == 'SpikeGLX' :
163164 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:
8989
9090@schema
9191class 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
9393 acq_software: varchar(24)
9494 """
9595 contents = zip (['SpikeGLX' , 'Open Ephys' ])
@@ -158,7 +158,8 @@ def make(self, key):
158158 else :
159159 raise FileNotFoundError (
160160 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 } ' )
162163
163164 if acq_software == 'SpikeGLX' :
164165 for meta_filepath in ephys_meta_filepaths :
You can’t perform that action at this time.
0 commit comments