Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Documentation VII #2229

Merged
merged 8 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
43 changes: 18 additions & 25 deletions doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ spikeinterface.comparison
.. autofunction:: compare_sorter_to_ground_truth
.. autofunction:: compare_templates
.. autofunction:: compare_multiple_templates
.. autofunction:: aggregate_performances_table
.. autofunction:: create_hybrid_units_recording
.. autofunction:: create_hybrid_spikes_recording

Expand Down Expand Up @@ -272,12 +271,22 @@ spikeinterface.widgets
.. autofunction:: set_default_plotter_backend
.. autofunction:: get_default_plotter_backend

.. autofunction:: plot_agreement_matrix
.. autofunction:: plot_all_amplitudes_distributions
.. autofunction:: plot_amplitudes
.. autofunction:: plot_autocorrelograms
.. autofunction:: plot_confusion_matrix
.. autofunction:: plot_comparison_collision_by_similarity
.. autofunction:: plot_crosscorrelograms
.. autofunction:: plot_isi_distribution
.. autofunction:: plot_motion
.. autofunction:: plot_multicomparison_agreement
.. autofunction:: plot_multicomparison_agreement_by_sorter
.. autofunction:: plot_multicomparison_graph
.. autofunction:: plot_peak_activity
.. autofunction:: plot_probe_map
.. autofunction:: plot_quality_metrics
.. autofunction:: plot_rasters
.. autofunction:: plot_sorting_summary
.. autofunction:: plot_spike_locations
.. autofunction:: plot_spikes_on_traces
Expand All @@ -286,34 +295,18 @@ spikeinterface.widgets
.. autofunction:: plot_traces
.. autofunction:: plot_unit_depths
.. autofunction:: plot_unit_locations
.. autofunction:: plot_unit_presence
.. autofunction:: plot_unit_probe_map
.. autofunction:: plot_unit_summary
.. autofunction:: plot_unit_templates
.. autofunction:: plot_unit_waveforms_density_map
.. autofunction:: plot_unit_waveforms


Legacy widgets
~~~~~~~~~~~~~~

These widgets are only available with the "matplotlib" backend

.. automodule:: spikeinterface.widgets
:noindex:

.. autofunction:: plot_rasters
.. autofunction:: plot_probe_map
.. autofunction:: plot_isi_distribution
.. autofunction:: plot_peak_activity_map
.. autofunction:: plot_principal_component
.. autofunction:: plot_unit_probe_map
.. autofunction:: plot_confusion_matrix
.. autofunction:: plot_agreement_matrix
.. autofunction:: plot_multicomp_graph
.. autofunction:: plot_multicomp_agreement
.. autofunction:: plot_multicomp_agreement_by_sorter
.. autofunction:: plot_comparison_collision_pair_by_pair
.. autofunction:: plot_comparison_collision_by_similarity
.. autofunction:: plot_sorting_performance
.. autofunction:: plot_study_run_times
.. autofunction:: plot_study_unit_counts
.. autofunction:: plot_study_performances
.. autofunction:: plot_study_agreement_matrix
.. autofunction:: plot_study_summary
.. autofunction:: plot_study_comparison_collision_by_similarity


spikeinterface.exporters
Expand Down
76 changes: 49 additions & 27 deletions doc/install_sorters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Some novel spike sorting algorithms are implemented directly in SpikeInterface u
:py:mod:`spikeinterface.sortingcomponents` module. Checkout the :ref:`si_based` section of this page
for more information!

If you experience installation problems please directly contact the authors of theses tools or write on the
related mailing list, google group, etc.
If you experience installation problems please directly contact the authors of these tools or write on the
related mailing list, google group, GitHub issue page, etc.

Please feel free to enhance this document with more installation tips.

Expand Down Expand Up @@ -251,31 +251,6 @@ Combinato
# or using CombinatoSorter.set_combinato_path()


Klusta (LEGACY)
^^^^^^^^^^^^^^^

* Python
* Requires SpikeInterface<0.96.0 (and Python 3.7)
* Url: https://github.com/kwikteam/klusta
* Authors: Cyrille Rossant, Shabnam Kadir, Dan Goodman, Max Hunter, Kenneth Harris
* Installation::

pip install Cython h5py tqdm
pip install click klusta klustakwik2

* See also: https://github.com/kwikteam/phy


Yass (LEGACY)
^^^^^^^^^^^^^

* Python, CUDA, torch
* Requires SpikeInterface<0.96.0 (and Python 3.7)
* Url: https://github.com/paninski-lab/yass
* Authors: JinHyung Lee, Catalin Mitelut, Liam Paninski
* Installation::

https://github.com/paninski-lab/yass/wiki/Installation-Local


.. _si_based:
Expand All @@ -302,3 +277,50 @@ working not only at peak times but at all times, recovering more spikes close to
pip install hdbscan
pip install spikeinterface
pip install numba (or conda install numba as recommended by conda authors)


Tridesclous2
^^^^^^^^^^^^

This is an upgraded version of Tridesclous, natively written in SpikeInterface.
#Same add his notes.

* Python
* Requires: HDBSCAN and Numba
* Authors: Samuel Garcia
* Installation::

pip install hdbscan
pip install spikeinterface
pip install numba



Legacy Sorters
--------------

Klusta (LEGACY)
^^^^^^^^^^^^^^^

* Python
* Requires SpikeInterface<0.96.0 (and Python 3.7)
* Url: https://github.com/kwikteam/klusta
* Authors: Cyrille Rossant, Shabnam Kadir, Dan Goodman, Max Hunter, Kenneth Harris
* Installation::

pip install Cython h5py tqdm
pip install click klusta klustakwik2

* See also: https://github.com/kwikteam/phy


Yass (LEGACY)
^^^^^^^^^^^^^

* Python, CUDA, torch
* Requires SpikeInterface<0.96.0 (and Python 3.7)
* Url: https://github.com/paninski-lab/yass
* Authors: JinHyung Lee, Catalin Mitelut, Liam Paninski
* Installation::

https://github.com/paninski-lab/yass/wiki/Installation-Local
Loading