1
1
# -*- coding: utf-8 -*-
2
2
import os
3
3
4
+ from collections import Counter
5
+
4
6
import numpy as np
5
7
import pandas as pd
6
8
7
9
from ..signal import signal_resample
8
10
9
11
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 ):
13
13
"""**Read and format a BIOPAC's AcqKnowledge file into a pandas' dataframe**
14
14
15
15
The function outputs both the dataframe and the sampling rate (retrieved from the
@@ -69,10 +69,7 @@ def read_acqknowledge(
69
69
filename += ".acq"
70
70
71
71
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 )
76
73
77
74
# Read file
78
75
file = bioread .read (filename )
@@ -84,24 +81,34 @@ def read_acqknowledge(
84
81
freq_list .append (file .named_channels [channel ].samples_per_second )
85
82
sampling_rate = np .max (freq_list )
86
83
84
+ # Counter for checking duplicate channel names
85
+ channel_counter = Counter ()
86
+
87
87
# Loop through channels
88
88
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 )
91
91
92
92
# Fill signal interruptions
93
93
if impute_missing is True and np .isnan (np .sum (signal )):
94
94
signal = pd .Series (signal ).fillna (method = "pad" ).values
95
95
96
96
# 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 :
98
98
signal = signal_resample (
99
99
signal ,
100
- sampling_rate = file .named_channels [ channel ].samples_per_second ,
100
+ sampling_rate = file .channels [ channel_num ].samples_per_second ,
101
101
desired_sampling_rate = sampling_rate ,
102
102
method = resample_method ,
103
103
)
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
105
112
106
113
# Sanitize lengths
107
114
lengths = []
0 commit comments