python-neo
python-neo copied to clipboard
Scaling error with ABF file
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 3. I load the ABF file using the following code.
original_file = AxonIO(filename=self.filename) read_data = original_file.read_block(lazy=False, cascade=True) self.trace = read_data.segments[0].analogsignals[0]
The raw file can be found here. https://drive.google.com/file/d/0BwyH-AX6qhpUczljSFlYNWxlOFk/view?usp=sharing
Thanks.