File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
element_array_ephys/spike_sorting Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ def make(self, key):
150
150
# Run preprocessing and save results to output folder
151
151
si_preproc_func = getattr (si_preprocessing , params ["SI_PREPROCESSING_METHOD" ])
152
152
si_recording = si_preproc_func (si_recording )
153
- si_recording .dump_to_pickle (file_path = recording_file )
153
+ si_recording .dump_to_pickle (file_path = recording_file , relative_to = output_dir )
154
154
155
155
self .insert1 (
156
156
{
@@ -203,7 +203,7 @@ def make(self, key):
203
203
sorting_save_path = (
204
204
output_dir / sorter_name / "spike_sorting" / "si_sorting.pkl"
205
205
)
206
- si_sorting .dump_to_pickle (sorting_save_path )
206
+ si_sorting .dump_to_pickle (sorting_save_path , relative_to = output_dir )
207
207
208
208
self .insert1 (
209
209
{
You can’t perform that action at this time.
0 commit comments