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
6 changes: 5 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,10 @@
{
"name": "McDermottroe, Conor"
},
{
"affiliation": "Institute of Imaging & Computer Vision, RWTH Aachen University, Germany",
"name": "Weninger, Leon"
},
{
"affiliation": "MIT, HMS",
"name": "Ghosh, Satrajit",
Expand All @@ -587,4 +591,4 @@
],
"license": "Apache-2.0",
"upload_type": "software"
}
}
4 changes: 4 additions & 0 deletions nipype/interfaces/fsl/epi.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,8 @@ class EpiRegOutputSpec(TraitedSpec):
structural space')
wmseg = File(
exists=True, desc='white matter segmentation used in flirt bbr')
seg = File(
exists=True, desc='white matter, gray matter, csf segmentation')
wmedge = File(exists=True, desc='white matter edges for visualization')


Expand Down Expand Up @@ -1013,6 +1015,8 @@ def _list_outputs(self):
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
1 change: 1 addition & 0 deletions nipype/interfaces/fsl/tests/test_auto_EpiReg.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def test_EpiReg_outputs():
fullwarp=dict(),
out_1vol=dict(),
out_file=dict(),
seg=dict(),
shiftmap=dict(),
wmedge=dict(),
wmseg=dict(),
Expand Down