Skip to content

Commit 361cd67

Browse files
committed
fix: do not use experimental feature of IntraModalMerge (#77)
1 parent 730e10c commit 361cd67

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sdcflows/workflows/gre.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ def init_magnitude_wf(omp_nthreads, name='magnitude_wf'):
6565
name='outputnode')
6666

6767
# Merge input magnitude images
68-
magmrg = pe.Node(IntraModalMerge(hmc=False, grand_mean_scaling=True),
69-
name='magmrg')
68+
magmrg = pe.Node(IntraModalMerge(hmc=False), name='magmrg')
7069

7170
# de-gradient the fields ("bias/illumination artifact")
7271
n4_correct = pe.Node(ants.N4BiasFieldCorrection(dimension=3, copy_header=True),

0 commit comments

Comments
 (0)