Skip to content

Commit ed32373

Browse files
committed
build: update spikeinterface-gui version and skip waveforms by default
1 parent f2435cf commit ed32373

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,6 @@ cython_debug/
169169

170170
# PyPI configuration file
171171
.pypirc
172+
173+
# VSCODE
174+
.vscode/

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN git clone https://github.com/SpikeInterface/spikeinterface.git && \
3131
# Install spikeinterface-gui from source
3232
RUN git clone https://github.com/alejoe91/spikeinterface-gui.git && \
3333
cd spikeinterface-gui && \
34-
git checkout edf817027136ce4b4b8bf20ce5125f7f4be336e5 && \
34+
git checkout b3ac872c7c4d932e687154fd4a789de4c7bc150e && \
3535
pip install . && cd ..
3636

3737

src/aind_ephys_portal/panel/ephys_gui.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
zone4=[],
6060
zone5=["probe"],
6161
zone6=["ndscatter", "similarity"],
62-
zone7=["waveform", "waveformheatmap"],
62+
zone7=["waveform"],
6363
zone8=["correlogram", "metrics", "mainsettings"],
6464
)
6565

@@ -162,7 +162,6 @@ def _set_curation_data_from_message(self, event):
162162
}
163163
"""
164164
msg = event.data
165-
print(f"Received message: {msg}")
166165
payload = (msg or {}).get("payload", {})
167166
identifier = payload.get("identifier", None)
168167
if identifier != self.identifier:
@@ -174,6 +173,8 @@ def _set_curation_data_from_message(self, event):
174173
print(f"Received message with type {data_type}, but expected 'curation-data'. Ignoring.")
175174
return
176175

176+
print(f"Received curation message!")
177+
177178
curation_data = payload.get("data", None)
178179

179180
# Optional: validate basic structure

0 commit comments

Comments
 (0)