Skip to content

Commit ce3039c

Browse files
committed
FIX: Use presence of RepetitionTime metadata to determine whether to override
1 parent 40ca558 commit ce3039c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/interfaces/bids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ def _run_interface(self, runtime):
608608
)
609609

610610
curr_zooms = zooms = hdr.get_zooms()
611-
if out_entities["suffix"] == "bold":
611+
if "RepetitionTime" in self.inputs.get():
612612
zooms = curr_zooms[:3] + (self.inputs.RepetitionTime,)
613613

614614
if (curr_codes, curr_units, curr_zooms) != (xcodes, units, zooms):

0 commit comments

Comments
 (0)