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
@lfrank I was able to run AnalysisNwbfile().nightly_cleanup(). IntervalList does not have a nightly cleanup currently. I think it has to do with running an outdated version. The current cleanup script is:
#!/usr/bin/env pythonimportos# ignore datajoint+jupyter async warningsimportwarningswarnings.simplefilter("ignore", category=DeprecationWarning)
warnings.simplefilter("ignore", category=ResourceWarning)
# NOTE: "SPIKE_SORTING_STORAGE_DIR" -> "SPYGLASS_SORTING_DIR"os.environ["SPYGLASS_SORTING_DIR"] ="/stelmo/nwb/spikesorting"# import tables so that we can call them easilyfromspyglass.commonimportAnalysisNwbfilefromspyglass.decoding.decoding_mergeimportDecodingOutputfromspyglass.spikesortingimportSpikeSortingdefmain():
AnalysisNwbfile().nightly_cleanup()
SpikeSorting().nightly_cleanup()
DecodingOutput().cleanup()
if__name__=="__main__":
main()
The spikesorting cleanup doesn't actually work here however.
When running the weekly cleanup script:
The output is:
The text was updated successfully, but these errors were encountered: