Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

v0.11.1

Compare
Choose a tag to compare
@CodyCBakerPhD CodyCBakerPhD released this 03 Mar 21:32
· 1202 commits to main since this release
a2b08fc

v0.11.1

  • Forces session_start_time to be a required field of the metadata immediately prior to any instantiation of an NWBFile.
  • Reorganizes the tools and utils into more internally manageable and convenient-to-import structure.

Simple instructions for updating any scripts that are broken in going from v0.9.9 to any version after and including v0.11.1 are:

pre-v0.11.1: from nwb_conversion_tools.utils.json_schema import xyz
post-v0.11.1: from nwb_conversion_tools.utils import xyz

pre-v0.11.1: from nwb_conversion_tools.utils.conversion_tools import check_regular_timestamps
post-v0.11.1: from nwbinspector.utils import check_regular_series

pre-v0.11.1: from nwb_conversion_tools.utils.nwbfile_tools import xyz
post-v0.11.1: from nwb_conversion_tools.tools.nwb_helpers

pre-v0.11.1: from nwb_conversion_tools.utils.spike_interface import xyz or nwb_conversion_tools.utils.roiextractors import zyx
post-v0.11.1:

from nwb_conversion_tools import spikeinterface, roiextractors 
spikeinterface.xyz
roiextractors.zyx

For any questions, or if you need any help in updating from v0.9.9 to v0.11.1 and beyond, feel free to reach out to [email protected]