Skip to content

Commit

Permalink
[FIX] Use mask, when provided, in t2smap workflow. (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo authored Mar 23, 2020
1 parent 5807ea8 commit 926de14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tedana/workflows/t2smap.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def t2smap_workflow(data, tes, mask=None, fitmode='all', combmode='t2s',
LGR.info('Computing adaptive mask')
else:
LGR.info('Using user-defined mask')
mask, masksum = utils.make_adaptive_mask(catd, getsum=True)
mask, masksum = utils.make_adaptive_mask(catd, mask=mask, getsum=True)

LGR.info('Computing adaptive T2* map')
if fitmode == 'all':
Expand Down

0 comments on commit 926de14

Please sign in to comment.