Skip to content

Commit f8ce527

Browse files
committed
Fix the scaling factor.
1 parent f19181e commit f8ce527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmriprep/workflows/bold/denoise.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def init_bold_dwidenoise_wf(
245245

246246
# Apply sqrt(2) scaling factor to noise map
247247
rescale_noise = pe.Node(
248-
Calc(expr='a*sqrt(2)', outputtype='NIFTI_GZ'),
248+
Calc(expr='a/sqrt(2)', outputtype='NIFTI_GZ'),
249249
name='rescale_noise',
250250
)
251251
workflow.connect([

0 commit comments

Comments
 (0)