Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
"name": "Perkins, L. Nathan"
},
{
"affiliation": "Otto-von-Guericke-University Magdeburg, Germany",
"affiliation": "Max Planck Institute for Human Cognitive and Brain Sciences",
"name": "Contier, Oliver",
"orcid": "0000-0002-2983-4709"
},
Expand Down
21 changes: 10 additions & 11 deletions nipype/interfaces/fsl/epi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1306,20 +1306,19 @@ def _list_outputs(self):
outputs["epi2str_inv"] = os.path.join(
os.getcwd(), self.inputs.out_base + "_inv.mat"
)

if not isdefined(self.inputs.wmseg):
outputs["wmedge"] = os.path.join(
os.getcwd(), self.inputs.out_base + "_fast_wmedge.nii.gz"
)
outputs["wmseg"] = os.path.join(
os.getcwd(), self.inputs.out_base + "_fast_wmseg.nii.gz"
)
outputs["seg"] = os.path.join(
os.getcwd(), self.inputs.out_base + "_fast_seg.nii.gz"
)
outputs["epi2str_mat"] = os.path.join(
os.getcwd(), self.inputs.out_base + ".mat"
)
outputs["wmedge"] = os.path.join(
os.getcwd(), self.inputs.out_base + "_fast_wmedge.nii.gz"
)
outputs["wmseg"] = os.path.join(
os.getcwd(), self.inputs.out_base + "_fast_wmseg.nii.gz"
)
outputs["seg"] = os.path.join(
os.getcwd(), self.inputs.out_base + "_fast_seg.nii.gz"
)

return outputs


Expand Down