abf2-package {abf2} | R Documentation |
Loads electrophysiology data from Version 2 ABF files, as created by Axon Instruments/Molecular Devices software such as pClamp 10. Only files recorded in gap-free mode are currently supported.
The ABF2 loading routines are adapted from Matlab code by Forrest Collman <forrest.collman@gmail.com> and C++ code by Jakub Nowacki <http://sourceforge.net/projects/libaxon/>.
Package: | abf2 |
Type: | Package |
Version: | 0.7 |
Date: | 2013-07-17 |
License: | Artistic-2.0 |
LazyLoad: | yes |
Matthew Caldwell <m.caldwell@ucl.ac.uk>
## Not run: # load an ABF file chosen through a standard file dialog ab <- abfload() # print a summary of the file contents summary(ab) # plot it with default options (full duration of first recorded channel) plot(ab) # plot the first 5 seconds of the second channel plot(ab, adc=2, time=c(0,5)) ## End(Not run)