diff --git a/docs/api/interfaces.ecephys.rst b/docs/api/interfaces.ecephys.rst index a7d682622..a6cf31dfc 100644 --- a/docs/api/interfaces.ecephys.rst +++ b/docs/api/interfaces.ecephys.rst @@ -37,6 +37,14 @@ KiloSort Sorting ---------------- .. automodule:: neuroconv.datainterfaces.ecephys.kilosort.kilosortdatainterface +MaxOne Recording +---------------- +.. automodule:: neuroconv.datainterfaces.ecephys.maxwell.maxonedatainterface + +MEArec Recording +---------------- +.. automodule:: neuroconv.datainterfaces.ecephys.mearec.mearecdatainterface + Neuralynx Recording & Sorting ----------------------------- .. automodule:: neuroconv.datainterfaces.ecephys.neuralynx.neuralynxdatainterface @@ -49,6 +57,7 @@ OpenEphys Recording ------------------- .. automodule:: neuroconv.datainterfaces.ecephys.openephys.openephysdatainterface + Phy Sorting ----------- .. automodule:: neuroconv.datainterfaces.ecephys.phy.phydatainterface @@ -68,6 +77,7 @@ Spikegadgets Recording SpikeGLX Recording ------------------ +.. automodule:: neuroconv.datainterfaces.ecephys.spikeglx.spikeglxconverter .. automodule:: neuroconv.datainterfaces.ecephys.spikeglx.spikeglxdatainterface .. automodule:: neuroconv.datainterfaces.ecephys.spikeglx.spikeglxnidqinterface diff --git a/src/neuroconv/datainterfaces/ecephys/spikeglx/spikeglxconverter.py b/src/neuroconv/datainterfaces/ecephys/spikeglx/spikeglxconverter.py index 69b2480fb..5008eb573 100644 --- a/src/neuroconv/datainterfaces/ecephys/spikeglx/spikeglxconverter.py +++ b/src/neuroconv/datainterfaces/ecephys/spikeglx/spikeglxconverter.py @@ -1,4 +1,3 @@ -"""The simplest, easiest to use class for converting all SpikeGLX data in a folder.""" from pathlib import Path from typing import List, Optional @@ -11,7 +10,11 @@ class SpikeGLXConverterPipe(ConverterPipe): - """Primary conversion class for handling multiple SpikeGLX data streams.""" + """ + The simplest, easiest to use class for converting all SpikeGLX data in a folder. + + Primary conversion class for handling multiple SpikeGLX data streams. + """ @classmethod def get_source_schema(cls):