Skip to content
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
3dc5729
Test IBL extractors tests failing for PI update
alejoe91 Dec 29, 2025
d1a0532
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Jan 6, 2026
33c6769
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Jan 16, 2026
2c94bac
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Jan 20, 2026
a412bd8
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Feb 2, 2026
504e19d
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Feb 12, 2026
cd09c19
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Feb 19, 2026
a40d073
Merge branch 'main' of github.com:alejoe91/spikeinterface
alejoe91 Feb 24, 2026
a1da327
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 2, 2026
ef19a8e
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 3, 2026
a098b51
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 6, 2026
61c317a
Fix OpenEphys tests
alejoe91 Mar 6, 2026
c9ff247
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 9, 2026
3520138
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 16, 2026
f61329d
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 16, 2026
d64ae6a
Merge branch 'main' of github.com:alejoe91/spikeinterface
alejoe91 Mar 16, 2026
ef40b73
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 17, 2026
aef197d
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 17, 2026
e82331b
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 20, 2026
710cb6f
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 23, 2026
c2f8db1
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 23, 2026
11c5812
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 24, 2026
ada53f8
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 24, 2026
22ff8fd
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 25, 2026
161d25b
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 27, 2026
1d09ec6
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 30, 2026
afb7d33
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 30, 2026
fa556ba
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 30, 2026
cbc36de
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Mar 31, 2026
6b3e373
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 9, 2026
8e68f16
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 14, 2026
1c80910
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 14, 2026
7eb2251
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 16, 2026
5eff246
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 17, 2026
b6ee0e8
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 20, 2026
2e0de80
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 21, 2026
e880394
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 21, 2026
37a40b9
Merge branch 'main' of github.com:SpikeInterface/spikeinterface
alejoe91 Apr 22, 2026
f8a97d9
Merge branch 'main' of github.com:alejoe91/spikeinterface
alejoe91 Apr 22, 2026
5d22d80
Fix sortingview backend in plot_sorting_summary
alejoe91 Apr 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src/spikeinterface/widgets/sorting_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def plot_figpack(self, data_plot, **backend_kwargs):

use_sortingview = backend_kwargs.get("use_sortingview", False)
vv_base, vv_views = import_figpack_or_sortingview(use_sortingview)
backend = "sortingview" if use_sortingview else "figpack"

dp = to_attr(data_plot)
sorting_analyzer = dp.sorting_analyzer
Expand All @@ -141,7 +142,7 @@ def plot_figpack(self, data_plot, **backend_kwargs):
hide_unit_selector=True,
generate_url=False,
display=False,
backend="figpack",
backend=backend,
).view
v_average_waveforms = UnitTemplatesWidget(
sorting_analyzer,
Expand All @@ -150,7 +151,7 @@ def plot_figpack(self, data_plot, **backend_kwargs):
hide_unit_selector=True,
generate_url=False,
display=False,
backend="figpack",
backend=backend,
).view
v_cross_correlograms = CrossCorrelogramsWidget(
sorting_analyzer,
Expand All @@ -159,7 +160,7 @@ def plot_figpack(self, data_plot, **backend_kwargs):
hide_unit_selector=True,
generate_url=False,
display=False,
backend="figpack",
backend=backend,
).view

v_unit_locations = UnitLocationsWidget(
Expand All @@ -168,7 +169,7 @@ def plot_figpack(self, data_plot, **backend_kwargs):
hide_unit_selector=True,
generate_url=False,
display=False,
backend="figpack",
backend=backend,
).view

w = TemplateSimilarityWidget(
Expand All @@ -177,7 +178,7 @@ def plot_figpack(self, data_plot, **backend_kwargs):
immediate_plot=False,
generate_url=False,
display=False,
backend="figpack",
backend=backend,
)
similarity = w.data_plot["similarity"]

Expand Down
Loading