Skip to content

Commit e2a37fa

Browse files
authored
Merge pull request #2 from avneet14027/add_pet_freesurfer
2 parents ea8e89d + b9039d6 commit e2a37fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/interfaces/freesurfer/petsurfer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,8 @@ def _list_outputs(self):
525525
ext = '.nii'
526526
else:
527527
ext = '.mgh'
528-
outputs['bp'] = os.join(self.inputs.glm_dir, 'bp', ext)
529-
outputs['yhat'] = os.join(self.inputs.glm_dir, 'yhat', ext)
528+
outputs['bp'] = os.path.join(self.inputs.glm_dir, 'bp', ext)
529+
outputs['yhat'] = os.path.join(self.inputs.glm_dir, 'yhat', ext)
530530
return outputs
531531

532532
class LoganRefInputSpec(GLMFitInputSpec):
@@ -575,5 +575,5 @@ def _list_outputs(self):
575575
ext = '.nii'
576576
else:
577577
ext = '.mgh'
578-
outputs['bp'] = os.join(self.inputs.glm_dir, 'bp', ext)
578+
outputs['bp'] = os.path.join(self.inputs.glm_dir, 'bp', ext)
579579
return outputs

0 commit comments

Comments
 (0)