File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and
44[ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
55
6+ ## [ 0.6.2] - 2025-09-15
7+
8+ - Fix - Convert unsigned to signed in ` organoid_preprocessing ` for SI v.0.103+
9+
610## [ 0.6.1] - 2025-06-04
711
812- Fix - Use Spikeinterface official released versions
Original file line number Diff line number Diff line change 11import spikeinterface as si
2- from spikeinterface import preprocessing
3-
42
53def CatGT (recording ):
64 recording = si .preprocessing .phase_shift (recording )
@@ -39,6 +37,7 @@ def IBLdestriping_modified(recording):
3937
4038def organoid_preprocessing (recording ):
4139 """Preprocessing pipeline for organoid data."""
40+ recording = si .preprocessing .unsigned_to_signed (recording )
4241 recording = si .preprocessing .bandpass_filter (
4342 recording = recording , freq_min = 300 , freq_max = 6000
4443 )
Original file line number Diff line number Diff line change 11"""Package metadata."""
22
3- __version__ = "0.6.1 "
3+ __version__ = "0.6.2 "
You can’t perform that action at this time.
0 commit comments