Skip to content

Commit 30dcb67

Browse files
committed
Some more change
1 parent 46cd887 commit 30dcb67

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

neo/rawio/spikegadgetsrawio.py

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,19 @@ class SpikeGadgetsRawIO(BaseRawIO):
3333

3434
def __init__(self, filename='', selected_streams=None):
3535
"""
36-
filename: str
37-
The filename
38-
selected_streams: None, list, str
39-
sublist of streams to load/expose to API
40-
useful for spikeextractor when one stream only is needed.
41-
For instance streams = ['ECU', 'trodes']
42-
'trodes' is name for ephy channel (ntrodes)
36+
Class for reading spikegadgets files.
37+
Only continuous signals are supported at the moment.
38+
39+
https://spikegadgets.com/spike-products/
40+
41+
Args:
42+
filename: str
43+
The filename
44+
selected_streams: None, list, str
45+
sublist of streams to load/expose to API
46+
useful for spikeextractor when one stream only is needed.
47+
For instance streams = ['ECU', 'trodes']
48+
'trodes' is name for ephy channel (ntrodes)
4349
"""
4450
BaseRawIO.__init__(self)
4551
self.filename = filename
@@ -108,7 +114,7 @@ def _parse_header(self):
108114
for channel in device:
109115

110116
if 'interleavedDataIDByte' in channel.attrib:
111-
# TODO LATER: deal with "headstageSensor" wich have interleaved
117+
# TODO LATER: deal with "headstageSensor" which have interleaved
112118
continue
113119

114120
if channel.attrib['dataType'] == 'analog':

0 commit comments

Comments
 (0)