Skip to content

Commit ec1f327

Browse files
authored
Merge pull request nipy#3596 from GalKepler/fix_dwipreproc
FIX: DWIPreproc issue
2 parents ca27e51 + 6007848 commit ec1f327

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.zenodo.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
},
321321
{
322322
"affiliation": "Sagol School of Neuroscience, Tel Aviv University",
323-
"name": "Ben-Zvi, Gal",
323+
"name": "Kepler, Gal",
324324
"orcid": "0000-0002-5655-9423"
325325
},
326326
{

nipype/interfaces/mrtrix3/preprocess.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ class DWIPreproc(MRTrix3Base):
406406
def _list_outputs(self):
407407
outputs = self.output_spec().get()
408408
outputs["out_file"] = op.abspath(self.inputs.out_file)
409-
if self.inputs.export_grad_mrtrix:
409+
if self.inputs.out_grad_mrtrix:
410410
outputs["out_grad_mrtrix"] = op.abspath(self.inputs.out_grad_mrtrix)
411411
if self.inputs.export_grad_fsl:
412412
outputs["out_fsl_bvec"] = op.abspath(self.inputs.out_grad_fsl[0])

0 commit comments

Comments
 (0)