python-neo
python-neo copied to clipboard
Neo is a package for representing electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats
I think the new ImageSequence object, implemented by @teogale, is a great addition to Neo! So, I'm wondering how to best make use of this kind of object. On the...
Such that all rawio implementation can be used like this: ```python with BlackrockIO('filename') as io: io.read_block() ```
@apdavison @JuliaSprenger We have decided to move proxyobject to core. The main issue I see in that test_proxyobject depend on neo.rawio because we need at least on rawio to test...
Similar to the `time_slice` utilities introduced in #526 it would be nice to be able go from a lazy object structure to a structure containing data e.g. via `block.load(time_slice=(...))` or...
All IOs with writing capability should load data automatically when writing. Current IOs with writing capability are - [ ] AsciiSignalIO - [ ] AsciiSpikeTrainIO - [ ] KlustaKwikIO -...
With code like this, ```python import neo io = neo.io.get_io(filename) blk = io.read_block(lazy=True) del io del blk ``` the file `filename` will remain locked until the Python process ends. I...
We should rewrite example with sphinx galleray and make many more examples. The actual situation is a mix between script and jupyter NB.
cf #967, which fixed a bug but didn't have tests