Skip to content
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.6.2] - 2025-09-15

- Fix - Convert unsigned to signed in `organoid_preprocessing` for SI v.0.103+

## [0.6.1] - 2025-06-04

- Fix - Use Spikeinterface official released versions
Expand Down
3 changes: 1 addition & 2 deletions element_array_ephys/spike_sorting/si_preprocessing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import spikeinterface as si
from spikeinterface import preprocessing


def CatGT(recording):
recording = si.preprocessing.phase_shift(recording)
Expand Down Expand Up @@ -39,6 +37,7 @@ def IBLdestriping_modified(recording):

def organoid_preprocessing(recording):
"""Preprocessing pipeline for organoid data."""
recording = si.preprocessing.unsigned_to_signed(recording)
recording = si.preprocessing.bandpass_filter(
recording=recording, freq_min=300, freq_max=6000
)
Expand Down
2 changes: 1 addition & 1 deletion element_array_ephys/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Package metadata."""

__version__ = "0.6.1"
__version__ = "0.6.2"
Loading