Skip to content

Commit

Permalink
Add quotes in the conversion gallery installation (#956)
Browse files Browse the repository at this point in the history
Co-authored-by: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com>
  • Loading branch information
h-mayorquin and CodyCBakerPhD authored Jul 11, 2024
1 parent c9aeed9 commit 5986a72
Show file tree
Hide file tree
Showing 46 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/neuroconv_latest_release_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ FROM python:3.11.7-slim
LABEL org.opencontainers.image.source=https://github.com/catalystneuro/neuroconv
LABEL org.opencontainers.image.description="A docker image for the most recent official release of the NeuroConv package."
RUN apt update && apt install musl-dev python3-dev -y
RUN pip install neuroconv[full]
RUN pip install "neuroconv[full]"
CMD ["python -m"]
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/behavior/audio.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading audio d

.. code-block:: bash
pip install neuroconv[audio]
pip install "neuroconv[audio]"
This interface can handle conversions from `WAV` format to NWB using the
:py:class:`~neuroconv.datainterfaces.behavior.audio.audiointerface.AudioInterface` class.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/behavior/deeplabcut.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading DeepLab

.. code-block:: bash
pip install neuroconv[deeplabcut]
pip install "neuroconv[deeplabcut]"
Convert DeepLabCut pose estimation data to NWB using :py:class:`~neuroconv.datainterfaces.behavior.deeplabcut.deeplabcutdatainterface.DeepLabCutInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/behavior/fictrac.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading `FicTra

.. code-block:: bash
pip install neuroconv[fictrac]
pip install "neuroconv[fictrac]"
Convert FicTrac spherical motion and fictive animal path data in a FicTrac ``.dat`` file to NWB using :py:class:`~neuroconv.datainterfaces.behavior.fictrac.fictracdatainterface.FicTracDataInterface`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Lightni

.. code-block:: bash
pip install neuroconv[lightningpose]
pip install "neuroconv[lightningpose]"
Convert LightningPose pose estimation data to NWB using :py:class:`~neuroconv.datainterfaces.behavior.lightningpose.lightningposeconverter.LightningPoseConverter`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/behavior/sleap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading SLEAP d

.. code-block:: bash
pip install neuroconv[sleap]
pip install "neuroconv[sleap]"
Convert SLEAP pose estimation data to NWB using :py:class:`~neuroconv.datainterfaces.behavior.sleap.sleapdatainterface.SLEAPInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/behavior/video.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading multime

.. code-block:: bash
pip install neuroconv[video]
pip install "neuroconv[video]"
This interface can handle conversions from avi, mov, mp4, wmv, flv and most FFmpeg_ supported formats to NWB using the
:py:class:`~neuroconv.datainterfaces.behavior.video.videodatainterface.VideoInterface` class.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/imaging/brukertiff.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Bruker

.. code-block:: bash
pip install neuroconv[brukertiff]
pip install "neuroconv[brukertiff]"
**Convert single imaging plane**

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/imaging/hdf5imaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading HDF5 da

.. code-block:: bash
pip install neuroconv[hdf5]
pip install "neuroconv[hdf5]"
Convert HDF5 imaging data to NWB using :py:class:`~neuroconv.datainterfaces.ophys.hdf5.hdf5datainterface.Hdf5ImagingInterface`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Micro-M

.. code-block:: bash
pip install neuroconv[micromanagertiff]
pip install "neuroconv[micromanagertiff]"
Convert Micro-Manager TIFF imaging data to NWB using
:py:class:`~neuroconv.datainterfaces.ophys.micromanagertiff.micromanagertiffdatainterface.MicroManagerTiffImagingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/imaging/miniscope.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Minisco

.. code-block:: bash
pip install neuroconv[miniscope]
pip install "neuroconv[miniscope]"
Miniscope simultaneously records optical physiology and behavior in the form of video data.
The :py:class:`~neuroconv.datainterfaces.ophys.miniscope.miniscopeconverter.MiniscopeConverter` combines the two data streams
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/imaging/scanbox.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Scanbox

.. code-block:: bash
pip install neuroconv[scanbox]
pip install"neuroconv[scanbox]"
Convert Scanbox imaging data to NWB using
:py:class:`~neuroconv.datainterfaces.ophys.sbx.sbxdatainterface.SbxImagingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/imaging/scanimage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading ScanIma

.. code-block:: bash
pip install neuroconv[scanimage]
pip install "neuroconv[scanimage]"
Convert single plane single file imaging data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/imaging/tiff.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading TIFF da

.. code-block:: bash
pip install neuroconv[tiff]
pip install "neuroconv[tiff]"
Convert TIFF imaging data to NWB using
:py:class:`~neuroconv.datainterfaces.ophys.tiff.tiffdatainterface.TiffImagingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/abf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading ABF dat

.. code-block:: bash
pip install neuroconv[abf]
pip install "neuroconv[abf]"
Convert ABF intracellular electrophysiology data to NWB using :py:class:`~neuroconv.datainterfaces.icephys.abf.abfdatainterface.AbfInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/alphaomega.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading AlphaOm

.. code-block:: bash
pip install neuroconv[alphaomega]
pip install "neuroconv[alphaomega]"
Convert AlphaOmega data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.alphaomega.alphaomegadatainterface.AlphaOmegaRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/axona.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Axona d

.. code-block:: bash
pip install neuroconv[axona]
pip install "neuroconv[axona]"
Convert axona data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.axona.axonadatainterface.AxonaRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/biocam.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Biocam

.. code-block:: bash
pip install neuroconv[biocam]
pip install "neuroconv[biocam]"
Convert Biocam data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.biocam.biocamdatainterface.BiocamRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/blackrock.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Blackro

.. code-block:: bash
pip install neuroconv[blackrock]
pip install "neuroconv[blackrock]"
Convert Blackrock data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.blackrock.blackrockdatainterface.BlackrockRecordingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/edf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading EDF dat

.. code-block:: bash
pip install neuroconv[edf]
pip install "neuroconv[edf]"
Convert edf data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.edf.edfdatainterface.EDFRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/intan.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Intan d

.. code-block:: bash
pip install neuroconv[intan]
pip install "neuroconv[intan]"
Convert Intan data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.intan.intandatainterface.IntanRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/maxone.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Install NeuroConv with the additional dependencies necessary for reading MaxOne

.. code-block:: bash
pip install neuroconv[maxwell]
pip install "neuroconv[maxwell]"
Convert MaxOne data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.maxwell.maxonedatainterface.MaxOneRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/mcsraw.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading MCSRaw

.. code-block:: bash
pip install neuroconv[mcsraw]
pip install "neuroconv[mcsraw]"
Convert MCSRaw data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.mcsraw.mcsrawdatainterface.MCSRawRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/mearec.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading MEArec

.. code-block:: bash
pip install neuroconv[mearec]
pip install "neuroconv[mearec]"
Convert MEArec data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.mearec.mearecdatainterface.MEArecRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/neuralynx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Neuraly

.. code-block:: bash
pip install neuroconv[neuralynx]
pip install "neuroconv[neuralynx]"
Convert Neuralynx data to NWB using
:py:class:`~.neuroconv.datainterfaces.ecephys.neuralynx.neuralynxdatainterface.NeuralynxRecordingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/neuroscope.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading NeuroSc

.. code-block:: bash
pip install neuroconv[neuroscope]
pip install "neuroconv[neuroscope]"
Convert NeuroScope data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.neuroscope.neuroscopedatainterface.NeuroScopeRecordingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/openephys.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading OpenEph

.. code-block:: bash
pip install neuroconv[openephys]
pip install "neuroconv[openephys]"
Convert OpenEphys data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.openephys.openephysdatainterface.OpenEphysRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/plexon.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Plexon

.. code-block:: bash
pip install neuroconv[plexon]
pip install "neuroconv[plexon]"
Convert Plexon recording data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.plexon.plexondatainterface.PlexonRecordingInterface`. Currently, only .plx is supported.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/spike2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Spike2

.. code-block:: bash
pip install neuroconv[spike2]
pip install "neuroconv[spike2]"
Convert Spike2 data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.spike2.spike2datainterface.Spike2RecordingInterface`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Spikega

.. code-block:: bash
pip install neuroconv[spikegadgets]
pip install "neuroconv[spikegadgets]"
Convert spikegadgets data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.spikegadgets.spikegadgetsdatainterface.SpikeGadgetsRecordingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/spikeglx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading SpikeGL

.. code-block:: bash
pip install neuroconv[spikeglx]
pip install "neuroconv[spikeglx]"
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/recording/tdt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading TDT dat

.. code-block:: bash
pip install neuroconv[tdt]
pip install "neuroconv[tdt]"
Convert TDT data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.tdt.tdtdatainterface.TdtRecordingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/segmentation/caiman.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading CaImAn

.. code-block:: bash
pip install neuroconv[caiman]
pip install "neuroconv[caiman]"
Convert CaImAn segmentation data to NWB using :py:class:`~neuroconv.datainterfaces.ophys.caiman.caimandatainterface.CaimanSegmentationInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/segmentation/cnmfe.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading CNMF-E

.. code-block:: bash
pip install neuroconv[cnmfe]
pip install "neuroconv[cnmfe]"
Convert CNMFE segmentation data to NWB using :py:class:`~neuroconv.datainterfaces.ophys.cnmfe.cnmfedatainterface.CnmfeSegmentationInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/segmentation/extract.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading EXTRACT

.. code-block:: bash
pip install neuroconv[extract]
pip install "neuroconv[extract]"
Convert EXTRACT segmentation data to NWB using :py:class:`~neuroconv.datainterfaces.ophys.extract.extractdatainterface.ExtractSegmentationInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/segmentation/suite2p.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading suite2p

.. code-block:: bash
pip install neuroconv[suite2p]
pip install "neuroconv[suite2p]"
Convert suite2p segmentation data to NWB using
:py:class:`~neuroconv.datainterfaces.ophys.suite2p.suite2pdatainterface.Suite2pSegmentationInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/sorting/blackrock.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Blackro

.. code-block:: bash
pip install neuroconv[blackrock]
pip install "neuroconv[blackrock]"
Convert Blackrock sorting data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.blackrock.blackrockdatainterface.BlackrockSortingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/sorting/cellexplorer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading CellExp

.. code-block:: bash
pip install neuroconv[cellexplorer]
pip install "neuroconv[cellexplorer]"
Convert CellExplorer sorting data to NWB using :py:class:`~neuroconv.datainterfaces.ecephys.cellexplorer.cellexplorerdatainterface.CellExplorerSortingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/sorting/kilosort.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading kilosor

.. code-block:: bash
pip install neuroconv[kilosort]
pip install "neuroconv[kilosort]"
Convert KiloSort data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.kilosort.kilosortdatainterface.KiloSortSortingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/sorting/neuralynx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading neuraly

.. code-block:: bash
pip install neuroconv[neuralynx]
pip install "neuroconv[neuralynx]"
Convert Neuralynx data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.neuralynx.neuralynxdatainterface.NeuralynxSortingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/sorting/neuroscope.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading neurosc

.. code-block:: bash
pip install neuroconv[neuroscope]
pip install "neuroconv[neuroscope]"
Convert NeuroScope sorting data to NWB using
:py:class:`~neuroconv.datainterfaces.ecephys.neuroscope.neuroscopedatainterface.NeuroScopeSortingInterface`.
Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/sorting/phy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Phy dat

.. code-block:: bash
pip install neuroconv[phy]
pip install "neuroconv[phy]"
Convert Phy data to NWB using :py:class:`~.neuroconv.datainterfaces.ecephys.phy.phydatainterface.PhySortingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/sorting/plexon.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Plexon

.. code-block:: bash
pip install neuroconv[plexon]
pip install "neuroconv[plexon]"
Convert Plexon spiking data (.plx) to NWB using :py:class:`~.neuroconv.datainterfaces.ecephys.plexon.plexondatainterface.PlexonSortingInterface`.

Expand Down
2 changes: 1 addition & 1 deletion docs/conversion_examples_gallery/text/excel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install NeuroConv with the additional dependencies necessary for reading Excel d

.. code-block:: bash
pip install neuroconv[excel]
pip install "neuroconv[excel]"
Convert Excel data to NWB using
:py:class:`~neuroconv.datainterfaces.text.excel.exceltimeintervalsinterface.ExcelTimeIntervalsInterface`.
Expand Down
Loading

0 comments on commit 5986a72

Please sign in to comment.