From 9afcf5db0755e32d0e2c3acbb05d1599a417232e Mon Sep 17 00:00:00 2001 From: Roberto <37729096+RobertoDF@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:43:50 +0200 Subject: [PATCH] Small fixes to export_to_ibl_gui doc --- doc/modules/exporters.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/modules/exporters.rst b/doc/modules/exporters.rst index 3f2aa2dca5..4819a7b33f 100644 --- a/doc/modules/exporters.rst +++ b/doc/modules/exporters.rst @@ -58,7 +58,7 @@ The input of the :py:func:`~spikeinterface.exporters.export_to_ibl_gui` is a :co sorting_analyzer = si.create_sorting_analyzer(sorting=sorting, recording=recording) # we need to compute some required extensions - sorting_analyzer.compute(['random_spikes', 'templates', 'spike_amplitudes', 'spike_locations', 'quality_metrics']) + sorting_analyzer.compute(['random_spikes', 'templates', 'spike_amplitudes', 'spike_locations', 'noise_levels', 'quality_metrics']) # note that spike_locations are optional, but recommended to compute accurate spike depths # optionally, we can pass an LFP recording to compute RMS/PSD in the LFP band @@ -70,7 +70,7 @@ The input of the :py:func:`~spikeinterface.exporters.export_to_ibl_gui` is a :co export_to_ibl_gui( sorting_analyzer=sorting_analyzer, output_folder='path/to/ibl_folder', - recording_lfp=recording_lfp, + lfp_recording=recording_lfp, n_jobs=-1 )