From 87592d11600fd6318dfe05cbefdf8520d3cb0b87 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Thu, 2 Aug 2018 10:27:12 +0100 Subject: [PATCH] Explicitly do not memmap, otherwise windows has trouble closing file handles. --- fsl/wrappers/wrapperutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsl/wrappers/wrapperutils.py b/fsl/wrappers/wrapperutils.py index 21829c13d..6728a2327 100644 --- a/fsl/wrappers/wrapperutils.py +++ b/fsl/wrappers/wrapperutils.py @@ -915,7 +915,7 @@ def fileOrImage(*args, **kwargs): # create an independent in-memory # copy of the image file - img = nib.load(path) + img = nib.load(path, mmap=False) # if any arguments were fsl images, # that takes precedence. -- GitLab