Skip to main content

Python library for reading files in Axon Binary Format (ABF)

Project description

pyABF provides a Python interface to files in the Axon Binary Format (ABF)

Quickstart

Access Sweep Data:

import pyabf
abf = pyabf.ABF("demo.abf")
abf.setSweep(3) # sweeps start at 0
print(abf.sweepY) # sweep data (ADC)
print(abf.sweepC) # sweep command (DAC)
print(abf.sweepX) # sweep times (seconds)

Plot a Single Sweep:

import matplotlib.pyplot as plt
import pyabf
abf = pyabf.ABF("17o05028_ic_steps.abf")
abf.setSweep(14)
plt.plot(abf.sweepX, abf.sweepY, lw=.5)
plt.show()
pyABF Example

Create Fancy Plots with Matplotlib:

import matplotlib.pyplot as plt
import pyabf
abf = pyabf.ABF("17o05028_ic_steps.abf")

plt.figure(figsize=(8, 5))
for sweepNumber in range(abf.sweepCount)[::5]:
    abf.setSweep(sweepNumber)
    plt.plot(abf.sweepX,abf.sweepY,alpha=.5,label=f"sweep {sweepNumber+1}")

plt.margins(0, .1)
plt.legend()
plt.ylabel(abf.sweepLabelY)
plt.xlabel(abf.sweepLabelX)
plt.title(abf.abfID)
plt.tight_layout()
plt.show()
pyABF Example

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: https://github.com/swharden/pyABF

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyabf-2.0.11.tar.gz (19.5 kB view details)

Uploaded Source

File details

Details for the file pyabf-2.0.11.tar.gz.

File metadata

  • Download URL: pyabf-2.0.11.tar.gz
  • Upload date:
  • Size: 19.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyabf-2.0.11.tar.gz
Algorithm Hash digest
SHA256 e0d27bb3b44c98659ff590c36a914caeddb95598adce3cb9b41a49fe2bc0c7a5
MD5 cb27d26e0ed4e2e57237827a18eaef98
BLAKE2b-256 4b6f0c72d0aa35cd83e19e2e9d6c239d1014bd1e98658aa363af8e0ffae0ae59

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page