Skip to content

Commit

Permalink
Merge pull request #30 from khanlab/uni-images
Browse files Browse the repository at this point in the history
fix for UNI_Images
  • Loading branch information
akhanf committed May 2, 2022
2 parents 9ca437e + 7a32e8d commit 9613122
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions heuristics/cfmm_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,11 +339,11 @@ def infotodict(seqinfo):
elif ('DIS3D' in (s.image_type[4].strip())):
info[DIS3D_t1w].append({'item': s.series_id})
if ('UNI_Images' in (s.series_description).strip()):
if ('DIS2D' in (s.image_type[3].strip())):
if ('DIS2D' in s.image_type):
info[DIS2D_uni_mp2rage].append({'item': s.series_id})
if ('DIS3D' in (s.image_type[3].strip())):
if ('DIS3D' in s.image_type):
info[DIS3D_uni_mp2rage].append({'item': s.series_id})
if ('ND' in (s.image_type[3].strip())):
if ('ND' in s.image_type):
info[uni_mp2rage].append({'item': s.series_id})
if ('_INV2' in (s.series_description).strip()):
if ('DIS2D' in (s.image_type[3].strip())):
Expand Down

0 comments on commit 9613122

Please sign in to comment.