File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -560,19 +560,19 @@ def get_active_tetrode(self):
560560 tetrode_id = int (key .strip ("collectMask_" ))
561561 active_tetrodes .append (tetrode_id )
562562 return active_tetrodes
563-
563+
564564 def _get_active_channels (self ):
565565 """
566566 Returns the ID numbers of the active channels as a list.
567567 E.g.: [20,21,22,23] for tetrode 6 active.
568568 """
569569 active_tetrodes = self .get_active_tetrode ()
570570 active_channels = []
571-
571+
572572 for tetrode in active_tetrodes :
573573 chans = self ._get_channel_from_tetrode (tetrode )
574574 active_channels .append (chans )
575-
575+
576576 return np .concatenate (active_channels )
577577
578578 def _get_channel_from_tetrode (self , tetrode ):
@@ -645,7 +645,7 @@ def _get_signal_chan_header(self):
645645 gain_list = self ._get_channel_gain ()
646646 offset = 0 # What is the offset?
647647
648- first_channel = (active_tetrode_set [0 ] - 1 )* elec_per_tetrode
648+ first_channel = (active_tetrode_set [0 ] - 1 ) * elec_per_tetrode
649649 sig_channels = []
650650 for itetr in range (num_active_tetrode ):
651651
You can’t perform that action at this time.
0 commit comments