File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
read_imro , write_imro ,
12
12
read_BIDS_probe , write_BIDS_probe ,
13
13
read_spikeglx , parse_spikeglx_meta , get_saved_channel_indices_from_spikeglx_meta ,
14
- read_openephys , get_saved_channels_from_openephys_settings ,
14
+ read_openephys , get_saved_channel_indices_from_openephys_settings ,
15
15
read_mearec , read_nwb ,
16
16
read_maxwell , read_3brain )
17
17
from .utils import combine_probes
Original file line number Diff line number Diff line change @@ -1517,7 +1517,7 @@ def read_openephys(
1517
1517
contact_ids = np_probe_info ['contact_ids' ] if np_probe_info ['contact_ids' ] is not None else None
1518
1518
1519
1519
# check if subset of channels
1520
- chans_saved = get_saved_channels_from_openephys_settings (settings_file , stream_name = stream_name )
1520
+ chans_saved = get_saved_channel_indices_from_openephys_settings (settings_file , stream_name = stream_name )
1521
1521
1522
1522
# if a recording state is found, slice probe
1523
1523
if chans_saved is not None :
@@ -1563,7 +1563,7 @@ def read_openephys(
1563
1563
return probe
1564
1564
1565
1565
1566
- def get_saved_channels_from_openephys_settings (settings_file , stream_name ):
1566
+ def get_saved_channel_indices_from_openephys_settings (settings_file , stream_name ):
1567
1567
"""
1568
1568
Returns an array with the subset of saved channels indices (if used)
1569
1569
You can’t perform that action at this time.
0 commit comments