We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea8e89d + b9039d6 commit e2a37faCopy full SHA for e2a37fa
nipype/interfaces/freesurfer/petsurfer.py
@@ -525,8 +525,8 @@ def _list_outputs(self):
525
ext = '.nii'
526
else:
527
ext = '.mgh'
528
- outputs['bp'] = os.join(self.inputs.glm_dir, 'bp', ext)
529
- outputs['yhat'] = os.join(self.inputs.glm_dir, 'yhat', ext)
+ outputs['bp'] = os.path.join(self.inputs.glm_dir, 'bp', ext)
+ outputs['yhat'] = os.path.join(self.inputs.glm_dir, 'yhat', ext)
530
return outputs
531
532
class LoganRefInputSpec(GLMFitInputSpec):
@@ -575,5 +575,5 @@ def _list_outputs(self):
575
576
577
578
579
0 commit comments