Skip to content

Commit

Permalink
Merge pull request #2081 from samuelgarcia/fix_study
Browse files Browse the repository at this point in the history
small fix in gtstudy
  • Loading branch information
yger authored Oct 6, 2023
2 parents 8ba35b4 + cdf5457 commit 4cc4777
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/spikeinterface/comparison/groundtruthstudy.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def run_sorters(self, case_keys=None, engine="loop", engine_kwargs={}, keep=True
sorting_exists = sorting_folder.exists()

sorter_folder = self.folder / "sorters" / self.key_to_str(key)
sorter_folder_exists = sorting_folder.exists()
sorter_folder_exists = sorter_folder.exists()

if keep:
if sorting_exists:
Expand All @@ -185,6 +185,9 @@ def run_sorters(self, case_keys=None, engine="loop", engine_kwargs={}, keep=True
if log_file.exists():
log_file.unlink()

if sorter_folder_exists:
shutil.rmtree(sorter_folder)

params = self.cases[key]["run_sorter_params"].copy()
# this ensure that sorter_name is given
recording, _ = self.datasets[self.cases[key]["dataset"]]
Expand Down
2 changes: 1 addition & 1 deletion src/spikeinterface/widgets/widget_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
plot_study_run_times = StudyRunTimesWidget
plot_study_unit_counts = StudyUnitCountsWidget
plot_study_performances = StudyPerformances
plot_stufy_performances_vs_metrics = StudyPerformancesVsMetrics
plot_study_performances_vs_metrics = StudyPerformancesVsMetrics


def plot_timeseries(*args, **kwargs):
Expand Down

0 comments on commit 4cc4777

Please sign in to comment.