Skip to content

Commit e62372e

Browse files
committed
Merge pull request #423 from chrisfilo/fix/extractroi
fixed abspath for setting outputs
2 parents bb7e25e + 5d4cbe0 commit e62372e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

nipype/interfaces/fsl/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ def _list_outputs(self):
224224
if not isdefined(outputs['roi_file']):
225225
outputs['roi_file'] = self._gen_fname(self.inputs.in_file,
226226
suffix='_roi')
227+
outputs['roi_file'] = os.path.abspath(outputs['roi_file'])
227228
return outputs
228229

229230
def _gen_filename(self, name):

0 commit comments

Comments
 (0)