You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The preprocessing runs successfully, but something goes wrong in the build phase. I want to be able to easily pick up from after the preprocessing using the existing RawToNWBBuilder object.
I know that I can create a NWBFileBuilder object myself, but it would be nice to get it easily from RawToNWBBuilder so that all configurations are preserved.
Expected behavior
Want something like this:
# nwb_builder is a NWBFileBuilder objectnwb_builder=builder.get_nwb_builder(date)
and/or
# this method would essentially call NWBFileBuilder.build()# but passing all attributes of my existing RawToNWBBuilder instance.builder.build_nwb_file()
The text was updated successfully, but these errors were encountered:
Example workflow
Suppose that I am trying to build the NWB file from raw data, by constructing a RawToNWBBuilder object:
The preprocessing runs successfully, but something goes wrong in the build phase. I want to be able to easily pick up from after the preprocessing using the existing RawToNWBBuilder object.
I know that I can create a NWBFileBuilder object myself, but it would be nice to get it easily from RawToNWBBuilder so that all configurations are preserved.
Expected behavior
Want something like this:
and/or
The text was updated successfully, but these errors were encountered: