We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e46cb5e + 20436c5 commit e40b2f1Copy full SHA for e40b2f1
sdcflows/fieldmaps.py
@@ -450,10 +450,10 @@ def get_workflow(self, **kwargs):
450
kwargs["mode"] = str(self.method).rpartition(".")[-1].lower()
451
self._wf = init_fmap_wf(**kwargs)
452
self._wf.inputs.inputnode.magnitude = [
453
- str(f.path) for f in self.sources if f.suffix.startswith("magnitude")
+ str(f.path.absolute()) for f in self.sources if f.suffix.startswith("magnitude")
454
]
455
self._wf.inputs.inputnode.fieldmap = [
456
- (str(f.path), f.metadata)
+ (str(f.path.absolute()), f.metadata)
457
for f in self.sources
458
if f.suffix in ("fieldmap", "phasediff", "phase2", "phase1")
459
0 commit comments