Skip to content

Commit

Permalink
Update readme, CI and remove properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Jan 31, 2025
1 parent 2a3d625 commit 7ca3c34
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 309 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/docs_build_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Docs

# Generate the documentation on all merges to main, all pull requests, or by
# manual workflow dispatch. The build job can be used as a CI check that the
# docs still build successfully. The deploy job only runs when a tag is
# pushed and actually moves the generated html to the gh-pages branch
# (which triggers a GitHub pages deployment).
on:
push:
branches:
- main
tags:
- '*'
pull_request:
merge_group:
workflow_dispatch:

jobs:
linting:
# scheduled workflows should not run on forks
if: (${{ github.event_name == 'schedule' }} && ${{ github.repository_owner == 'neuroinformatics-unit' }} && ${{ github.ref == 'refs/heads/main' }}) || (${{ github.event_name != 'schedule' }})
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/lint@v2

build_sphinx_docs:
name: Build Sphinx Docs
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/build_sphinx_docs@main
with:
python-version: 3.11
use-make: true

deploy_sphinx_docs:
name: Deploy Sphinx Docs
needs: build_sphinx_docs
permissions:
contents: write
if: (github.event_name == 'push' && github.ref_type == 'tag') || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/deploy_sphinx_docs@main
with:
secret_input: ${{ secrets.GITHUB_TOKEN }}
use-make: true
232 changes: 8 additions & 224 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,229 +1,13 @@
> **Warning**
> **Spikewrap is not sufficiently tested to be used in analysis. This release is only for testing. Do not use for your final analyses.**
# spikewrap

> **Warning** **Limitations**
> - works only on SpikeGLX recordings with 1 gate, 1 trigger, 1 probe (per run, e.g. g0, t0, imec0)
> - requires standard input folder format
> - only run one subject / run at a time
> - has limited preprocessing options (`tshift`, `bandpass_filter`, `common median reference`)
> - no options to remove potentially large intermediate files
> - installation / running on HPC is a bit clunky. In future this can be simplified with SLURM jobs organised under the hood and setting up a HPC module.
> - untested!
> - The documentation is currently outdated.
``spikewrap`` is a tool for automating extracellular electrophysiology analysis.

See the documentation to a
[1-minute introduction]()
and to
[get started]().

# Features

- preprocess SpikeGLX data (`tshift`, `bandpass_filter`, `common median reference`)
- spike sorting (`kilosort2`, `kilosort2_5`, `kilosort3`)
- quality check measures on the sorting results
## Installation

# Local Installation

Sorting requires a NVIDIA GPU and so is currently only available using the SWC's High-Performance Computer (HPC). However, local installation is useful for visualising the preprocessing steps prior to running the full pipeline (see 'Visualisation' below).

To install locally, clone the repository to your local machine using git.

`git clone [email protected]:neuroinformatics-unit/spikewrap.git`

Change directory to the repo and install using

`pip install -e .`

or, to also install developer dependencies

`pip install -e .[dev]`

or if using the zsh shell

`pip install -e ".[dev]"`

After installation, the module can be imported with `import spikewrap`.

## Running on the HPC

Currently, sorting is required to run on the SWC HPC with access to `/ceph/neuroinformatics`.

To connect and run on the HPC (e.g. from Windows, macOS or Linux terminal):

`ssh [email protected]`

`ssh hpc-gw1`

The first time using, it is necessary to steup and install `spikewrap`. It is strongly recommended to make a new conda environment on the HPC, before installing `spikewrap`.

`module load miniconda`

`conda create --name spikewrap python=3.10`

`conda activate spikewrap`

and install spikewrap and it's dependencies:

`mkdir ~/git-repos`

`cd ~/git-repos`

`git clone https://github.com/JoeZiminski/spikewrap.git`

`cd spikewrap`

`pip install -e .`

Before running, it is necessary to request use of a GPU node on the HPC to run spike sorting with KiloSort. To run preprocessing and spike sorting, create a script using the API or call from the command line interface (instructions below).

`srun -p gpu --gres=gpu:1 -n 8 --mem=40GB --pty bash -i`

`module load cuda`

`module load miniconda`

`conda activate spikewrap`

`python my_pipeline_script.py`

# Quick Start Guide

Spikewrap (currently) expects input data to be stored in a `rawdata` folder. A subject (e.g. mouse) data should be stored in the `rawdata` folder and contain SpikeGLX output format (example below). **Currently, only recordings with 1 gate, 1 trigger and 1 probe are supported (i.e. index 0 for all gate, trigger probe, `g0`, `t0` and `imec0`)**.

```
└── rawdata/
└── 1110925/
└── 1110925_test_shank1_g0/
└── 1110925_test_shank1_g0_imec0/
├── 1110925_test_shank1_g0_t0.imec0.ap.bin
└── 1110925_test_shank1_g0_t0.imec0.ap.meta
```


## API (script)

Example code to analyse this data in this format is below:

```
from spikewrap.pipeline.full_pipeline import run_full_pipeline
base_path = "/ceph/neuroinformatics/neuroinformatics/scratch/ece_ephys_learning"
if __name__ == "__main__":
run_full_pipeline(
base_path=base_path,
sub_name="sub-001",
run_name="ses-001_condition-lse",
config_name="test",
sorter="kilosort2_5",
)
```

`base_path` is the path containing the required `rawdata` folder.

`sub_name` is the subject to run, and `run_name` is the SpikeGLX run name to run.

`configs_name` contains the name of the preprocessing / sorting settings to use (see below)

`sorter` is the name of the sorter to use (currently supported is `kilosort2`, `kilosort2_5` and `kilosort3`)

Note `run_full_pipline` must be run in the `if __name__ == "__main__"` block as it uses the `multiprocessing` module.

## Output

Output of spike sorting will be in a `derivatives` folder at the same level as the `rawdata`. The subfolder organisation of `derivatives` will match `rawdata`.

Output are the saved preprocessed data, spike sorting results as well as a list of [quality check measures](https://spikeinterface.readthedocs.io/en/latest/modules/qualitymetrics.html). For example, the full output of a sorting run with the input data as above is:

```
├── rawdata/
│ └── ...
└── derivatives/
└── 1110925/
└── 1110925_test_shank1_g0 /
└── 1110925_test_shank1_g0_imec0/
├── preprocessed/
│ ├── data_class.pkl
│ └── si_recording
├── kilosort2_5-sorting/
├── in_container_sorting/
├── sorter_output/
├── waveforms/
│ └── <spikeinterface waveforms output>
├── quality_metrics.csv
├── spikeinterface_log.json
├── spikeinterface_params.json
└── spikeinterface_recording.json
```


**preprocessed**:

- Binary-format spikeinterface recording from the final preprocessing step (`si_recording`) 2) `data_class.pkl` spikewrap internal use.

**-sorting output (e.g. kilosort2_5-sorting, multiple sorters can be run)**:

- <u>in_container_sorting</u>: stored options used to run the sorter

- <u>sorter_output</u>: the full output of the sorter (e.g. kilosort .npy files)

- <u>waveforms</u>: spikeinterface [waveforms](https://spikeinterface.readthedocs.io/en/latest/modules/core.html#waveformextractor) output containing AP
waveforms for detected spikes

- <u>quality_metrics.csv</u>: output of spikeinterface [quality check measures](https://spikeinterface.readthedocs.io/en/latest/modules/qualitymetrics.html)

# Set Preprocessing Options

Currently supported are multiplexing correction or tshift (termed `phase shift` here), common median referencing (CMR) (termed `common_reference` here) and bandpass filtering (`bandpass_filter`). These options provide an interface to [SpikeInterface preprocessing](https://spikeinterface.readthedocs.io/en/0.13.0/modules/toolkit/plot_1_preprocessing.html) options, more will be added soon.

Preprocessing options are set in `yaml` configuration files stored in `sbi_ephys/sbi_ephys/configs/`. A default pipeline is stored in `test.yaml`.

Custom preprocessing configuration files may be passed to the `config_name` argument, by passing the full path to the `.yaml` configuration file. For example:

```
'preprocessing':
'1':
- phase_shift
- {}
'2':
- bandpass_filter
- freq_min: 300
freq_max: 6000
'3':
- common_reference
- operator: median
reference: global
'sorting':
'kilosort3':
'car': False
'freq_min': 300
```

Configuration files are structured as a dictionary where keys indicate the order to run preprocessing The values hold a list in which the first element is the name of the preprocessing step to run, and the second element a dictionary containing kwargs passed to the spikeinterface function.

# Visualise Preprocessing

Visualising preprocesing output can be run locally to inspect output of preprocessing routines. To visualise preprocessing outputs:

```
from spikewrap.pipeline.preprocess import preprocess
from spikewrap.pipeline.visualise import visualise
base_path = "/ceph/neuroinformatics/neuroinformatics/scratch/ece_ephys_learning"
sub_name = "1110925"
run_name = "1110925_test_shank1"
data = preprocess(base_path=base_path, sub_name=sub_name, run_name=run_name)
visualise(
data,
steps="all",
mode="map",
as_subplot=True,
channel_idx_to_show=np.arange(10, 50),
show_channel_ids=False,
time_range=(1, 2),
)
```

This will display a plot showing data from all preprocessing steps, displaying channels with idx 10 - 50, over time period 1-2. Note this requires a GUI (i.e. not run on the HPC terminal) and is best run locally.

![plot](./readme_image.png)
``pip install spikewrap``
24 changes: 12 additions & 12 deletions docs/source/sg_execution_times.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Computation times
=================
**00:22.634** total execution time for 7 files **from all galleries**:
**00:21.500** total execution time for 7 files **from all galleries**:

.. container::

Expand All @@ -33,23 +33,23 @@ Computation times
- Time
- Mem (MB)
* - :ref:`sphx_glr_gallery_builds_how_to_01_preprocess_a_session.py` (``galleries\how_to\01_preprocess_a_session.py``)
- 00:09.089
- 0.0
* - :ref:`sphx_glr_gallery_builds_get_started_package_overview.py` (``galleries\get_started\package_overview.py``)
- 00:07.144
- 00:08.829
- 0.0
* - :ref:`sphx_glr_gallery_builds_tutorials_01_preprocessing_sessions.py` (``galleries\tutorials\01_preprocessing_sessions.py``)
- 00:06.383
- 00:06.401
- 0.0
* - :ref:`sphx_glr_gallery_builds_how_to_02_manage_configs.py` (``galleries\how_to\02_manage_configs.py``)
- 00:00.011
* - :ref:`sphx_glr_gallery_builds_get_started_package_overview.py` (``galleries\get_started\package_overview.py``)
- 00:06.244
- 0.0
* - :ref:`sphx_glr_gallery_builds_tutorials_02_managing_configs.py` (``galleries\tutorials\02_managing_configs.py``)
- 00:00.008
- 00:00.019
- 0.0
* - :ref:`sphx_glr_gallery_builds_how_to_03_run_in_slurm.py` (``galleries\how_to\03_run_in_slurm.py``)
- 00:00.000
* - :ref:`sphx_glr_gallery_builds_how_to_02_manage_configs.py` (``galleries\how_to\02_manage_configs.py``)
- 00:00.005
- 0.0
* - :ref:`sphx_glr_gallery_builds_tutorials_03_running_with_slurm.py` (``galleries\tutorials\03_running_with_slurm.py``)
- 00:00.000
- 00:00.001
- 0.0
* - :ref:`sphx_glr_gallery_builds_how_to_03_run_in_slurm.py` (``galleries\how_to\03_run_in_slurm.py``)
- 00:00.001
- 0.0
Loading

0 comments on commit 7ca3c34

Please sign in to comment.