Skip to content

Commit 339e108

Browse files
committed
BF: was incorrect assumption about motion corrected being marked as derived
1 parent 24bebd8 commit 339e108

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

heuristics/dbic_bids.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,9 @@ def infotodict(seqinfo):
436436
# if there is no _run -- no run label addded
437437
run_label = None
438438

439-
if s.is_motion_corrected:
440-
assert s.is_derived, "Motion corrected images must be 'derived'"
439+
# yoh: had a wrong assumption
440+
# if s.is_motion_corrected:
441+
# assert s.is_derived, "Motion corrected images must be 'derived'"
441442

442443
if s.is_motion_corrected and 'rec-' in regd.get('bids', ''):
443444
raise NotImplementedError("want to add _acq-moco but there is _acq- already")

0 commit comments

Comments
 (0)