abf
A package for reading Axon Binary Format (ABF) files
Build Status |
---|
Installation
npm install @dglmoore/abf
Quickstart
const ABF = require('@dglmoore/abf');
const abf = ABF('demo.abf');
abf.set_sweep(0);
console.log(abf.sweep_x);
console.log(abf.sweep_y);
Acknowledgements
The abf package is and will continue to be heavily influenced by the pyABF project.