Python library for reading files in Axon Binary Format (ABF)
Project description
pyABF: a pure-Python ABF file reader
pyABF provides a Python interface to electrophysiology files in the Axon Binary Format (ABF). pyABF supports Python 3 and does not use obscure libraries (just numpy and matplotlib). pyABF supports reading ABF1 and ABF2 files and can write ABF1 files.
Quickstart
Install or upgrade pyABF:
pip install --upgrade pyabf
Access ABF sweep data:
import pyabf
abf = pyabf.ABF("demo.abf")
abf.setSweep(sweepNumber=3, channel=0)
print(abf.sweepY) # displays sweep data (ADC)
print(abf.sweepX) # displays sweep times (seconds)
print(abf.sweepC) # displays command waveform (DAC)
Plot a sweep with Matplotlib:
import pyabf
import matplotlib.pyplot as plt
abf = pyabf.ABF("demo.abf")
abf.setSweep(14)
plt.plot(abf.sweepX, abf.sweepY)
plt.show()
Additional Examples
Full pyabf API documentation, additional code examples, a pyabf cookbook, and low-level information about the ABF file format can be found at the pyABF project homepage: http://swharden.com/pyabf/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyabf-2.3.8.tar.gz
.
File metadata
- Download URL: pyabf-2.3.8.tar.gz
- Upload date:
- Size: 44.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a4cf5701149eed75adc4dc8ea975c61c43c1678e5bcf468426140ec52302109 |
|
MD5 | e6131e2248de1c4340eb9477b69a60a1 |
|
BLAKE2b-256 | 088c60694c3129f22766e69e413c8172a263a46f363a99498da63bda411cfe28 |
File details
Details for the file pyabf-2.3.8-py3-none-any.whl
.
File metadata
- Download URL: pyabf-2.3.8-py3-none-any.whl
- Upload date:
- Size: 53.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32c59da0db9afdb69568b6bd0f8aa4b409193fe325a461d906c6ae22e5bff391 |
|
MD5 | 0ca98af9c8d50514dd9cc389ad44af80 |
|
BLAKE2b-256 | b428b05be29bc66faa4683b18aaa67cb24edde881f54b0e368adf8975b78fd02 |