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

Currently lazy loading is implemented by loading the complete dataset in order to determine the size of data objects, in particular AnalogSignals. Although it is faster than loading without lazy...

enhancement
IO

When saving a spiketrain with a waveform array of shape `(0,0,0)` and loading it again using the NixIO, the new shape of the waveform array is `(0,)`. Here is some...

bug
IO

cf https://github.com/NeuralEnsemble/elephant/pull/59

bug
Core

The analog signals read from ABF files are roughly 500 times larger than the correct value. The ABF file which I'm using is the ABF V1.60 and I'm using Python...

bug
IO

Dear Neo development team I am trying to import an SMR file using neo.Spike2IO. The sampling rate of one of the read analog signals is different from what is shown...

bug
IO

Currently users need to know a lot about the specifics of their IO class to read it properly. One of the biggest problems is that, without reading the documentation, the...

enhancement
IO

For those who don't know, context managers are classes that can be used with python `with` statements. I think it would be beneficial for IO classes to be able to...

enhancement
IO
good-for-beginners

Originally from #62 Remove `sampling_rate` from `SpikeTrain` **crodger wrote on 2011-09-28 01:15:59:** Actually it has not been clarified exactly what `waveforms` should be yet. Let me propose this: ``` *...

enhancement
Core

## Context In PR #1601, @zm711 raised concerns about the usage and stability of stream_index as a public API in neo.rawio. The primary concern is whether changes to the ordering...

Fixes #1631 (I hope) The file is labeled as win, which worked locally for me, but I have a windows so first need to make sure it works on the...