Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
fslpy
Commits
5bbde65b
Commit
5bbde65b
authored
Nov 12, 2021
by
Paul McCarthy
🚵
Browse files
BF: Input files for wrapper functions were not being deleted
parent
1699706b
Changes
1
Hide whitespace changes
Inline
Side-by-side
fsl/wrappers/wrapperutils.py
View file @
5bbde65b
...
...
@@ -1047,7 +1047,8 @@ def fileOrImage(*args, **kwargs):
# in-memory image - we have
# to save it out to a file
if
infile
is
None
:
hd
,
infile
=
tempfile
.
mkstemp
(
fslimage
.
defaultExt
())
hd
,
infile
=
tempfile
.
mkstemp
(
fslimage
.
defaultExt
(),
dir
=
workdir
)
os
.
close
(
hd
)
val
.
to_filename
(
infile
)
...
...
@@ -1110,7 +1111,7 @@ def fileOrArray(*args, **kwargs):
infile
=
None
if
isinstance
(
val
,
np
.
ndarray
):
hd
,
infile
=
tempfile
.
mkstemp
(
'.txt'
)
hd
,
infile
=
tempfile
.
mkstemp
(
'.txt'
,
dir
=
workdir
)
os
.
close
(
hd
)
np
.
savetxt
(
infile
,
val
,
fmt
=
'%0.18f'
)
...
...
@@ -1176,6 +1177,7 @@ def fileOrText(*args, **kwargs):
if
not
isinstance
(
val
,
pathlib
.
Path
):
with
tempfile
.
NamedTemporaryFile
(
mode
=
'w'
,
suffix
=
'.txt'
,
dir
=
workdir
,
delete
=
False
)
as
f
:
f
.
write
(
val
)
infile
=
f
.
name
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment