Skip to content

Commit 3948d84

Browse files
[Fix] read_acqknowledge now also imports duplicated channel names
1 parent 0ea8a2b commit 3948d84

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed

neurokit2/data/read_acqknowledge.py

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# -*- coding: utf-8 -*-
22
import os
33

4+
from collections import Counter
5+
46
import numpy as np
57
import pandas as pd
68

79
from ..signal import signal_resample
810

911

10-
def read_acqknowledge(
11-
filename, sampling_rate="max", resample_method="interpolation", impute_missing=True
12-
):
12+
def read_acqknowledge(filename, sampling_rate="max", resample_method="interpolation", impute_missing=True):
1313
"""**Read and format a BIOPAC's AcqKnowledge file into a pandas' dataframe**
1414
1515
The function outputs both the dataframe and the sampling rate (retrieved from the
@@ -69,10 +69,7 @@ def read_acqknowledge(
6969
filename += ".acq"
7070

7171
if os.path.exists(filename) is False:
72-
raise ValueError(
73-
"NeuroKit error: read_acqknowledge(): couldn't"
74-
" find the following file: " + filename
75-
)
72+
raise ValueError("NeuroKit error: read_acqknowledge(): couldn't" " find the following file: " + filename)
7673

7774
# Read file
7875
file = bioread.read(filename)
@@ -84,24 +81,34 @@ def read_acqknowledge(
8481
freq_list.append(file.named_channels[channel].samples_per_second)
8582
sampling_rate = np.max(freq_list)
8683

84+
# Counter for checking duplicate channel names
85+
channel_counter = Counter()
86+
8787
# Loop through channels
8888
data = {}
89-
for channel in file.named_channels:
90-
signal = np.array(file.named_channels[channel].data)
89+
for channel_num, channel in enumerate(file.channels):
90+
signal = np.array(file.channels[channel_num].data)
9191

9292
# Fill signal interruptions
9393
if impute_missing is True and np.isnan(np.sum(signal)):
9494
signal = pd.Series(signal).fillna(method="pad").values
9595

9696
# Resample if necessary
97-
if file.named_channels[channel].samples_per_second != sampling_rate:
97+
if file.channels[channel_num].samples_per_second != sampling_rate:
9898
signal = signal_resample(
9999
signal,
100-
sampling_rate=file.named_channels[channel].samples_per_second,
100+
sampling_rate=file.channels[channel_num].samples_per_second,
101101
desired_sampling_rate=sampling_rate,
102102
method=resample_method,
103103
)
104-
data[channel] = signal
104+
105+
# If there is a duplicate channel name, append a number
106+
if channel_counter[channel.name] == 0:
107+
data[channel.name] = signal
108+
else:
109+
data[f"{channel.name} ({channel_counter[channel.name]})"] = signal
110+
111+
channel_counter[channel.name] += 1
105112

106113
# Sanitize lengths
107114
lengths = []

0 commit comments

Comments
 (0)