INM-6 / python-neo

Neo is a package for representing electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats
http://packages.python.org/neo/
BSD 3-Clause "New" or "Revised" License
3 stars 10 forks source link

Review usability of NeuralynxIO #32

Open JuliaSprenger opened 7 years ago

JuliaSprenger commented 7 years ago

based on samuelgarcias comment here: https://github.com/NeuralEnsemble/python-neo/pull/345#event-1133135150

I very recently try to use this IO but get into problems with cachedir. I don't remember exaclty.

Since I need only to acces AnalogSignal with original dtype (int16) I rewrote this by myself.

My code is really fast because it use mmap and is able to read chunk very fastly. The code is here at the end of the file: https://github.com/samuelgarcia/tridesclous/blob/master/tridesclous/datasource.py

maybe the 2 codes could be merge one day.