python-neo icon indicating copy to clipboard operation
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

Results 254 python-neo issues
Sort by recently updated
recently updated
newest added

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...

Core

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.

Documentation

Support empty lists in annotations (for NixIO). See #476

IO

cf #967, which fixed a bug but didn't have tests