Adds Recording.from_nwb() class method to instantiate a Recording object from NWB files. Currently supports neuropixel ecephys format, where a Recording is composed of experiment metadata along with a single PointProcess signal of the spike times, as well as an epochs dataframe and metadata about each unit. Also includes demo notebook, with details on obtaining stimulus images.
Writing NWB files is much more complicated, so was moved to a new issue (#167) and will be a separate PR.
Adds
Recording.from_nwb()
class method to instantiate aRecording
object from NWB files. Currently supports neuropixel ecephys format, where aRecording
is composed of experiment metadata along with a singlePointProcess
signal of the spike times, as well as an epochs dataframe and metadata about each unit. Also includes demo notebook, with details on obtaining stimulus images.Writing NWB files is much more complicated, so was moved to a new issue (#167) and will be a separate PR.
Resolves #165.