Skip to content

Commit

Permalink
Merge pull request #3596 from GalKepler/fix_dwipreproc
Browse files Browse the repository at this point in the history
FIX: DWIPreproc issue
  • Loading branch information
effigies authored Jul 31, 2023
2 parents ec1f327 + 7420058 commit 2ffd002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nipype/interfaces/mrtrix3/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def _list_outputs(self):
outputs["out_file"] = op.abspath(self.inputs.out_file)
if self.inputs.out_grad_mrtrix:
outputs["out_grad_mrtrix"] = op.abspath(self.inputs.out_grad_mrtrix)
if self.inputs.export_grad_fsl:
if self.inputs.out_grad_fsl:
outputs["out_fsl_bvec"] = op.abspath(self.inputs.out_grad_fsl[0])
outputs["out_fsl_bval"] = op.abspath(self.inputs.out_grad_fsl[1])

Expand Down

0 comments on commit 2ffd002

Please sign in to comment.