Skip to content

Commit 847eeba

Browse files
author
Thinh Nguyen
committed
remove used_in_reference in ElectrodeConfig
this is misleading as it's only relevant for SpikeGLX acquisition for denoting channel visualization
1 parent 281e37b commit 847eeba

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

elements_ephys/ephys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def make(self, key):
159159
electrode = (q_electrodes & {'shank': shank,
160160
'shank_col': shank_col,
161161
'shank_row': shank_row}).fetch1('KEY')
162-
eg_members.append({**electrode, 'used_in_reference': is_used})
162+
eg_members.append(electrode)
163163
else:
164164
raise NotImplementedError('Processing for neuropixels probe model {} not yet implemented'.format(
165165
spikeglx_meta.probe_model))

elements_ephys/probe.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,4 @@ class Electrode(dj.Part):
144144
definition = """ # Electrodes selected for recording
145145
-> master
146146
-> ProbeType.Electrode
147-
---
148-
used_in_reference=null: bool # is this channel used to form the internal reference
149147
"""

0 commit comments

Comments
 (0)