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 microscope offers the option to save MaxProjections of each tile directly with the raw data during recording (naming convention same as the tile + "_MP.tif". To skip these files when converting from raw_data (to avoid generating errors) I added the line 303 in my local version of the code. It may be nice to implement something like this also on the remote version.
302 files = sorted(glob(os.path.join(root, f"**/*{file_ext}"), recursive=True))
303 files[:] = [x for x in files if "_MP.tif" not in x]