Skip to content

Commit 388d942

Browse files
committed
Fix.
1 parent a9338d0 commit 388d942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/smriprep/workflows/surfaces.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ def init_cortex_masks_wf(
12301230

12311231
# Thickness is presumably already positive, but HCP uses abs(-thickness)
12321232
abs_thickness = pe.Node(
1233-
MetricMath(metric='thickness', operation='abs'),
1233+
MetricMath(metric='thickness', operation='abs', hemisphere=hemi),
12341234
name=f'abs_thickness_{hemi}',
12351235
)
12361236

@@ -1245,7 +1245,7 @@ def init_cortex_masks_wf(
12451245
mem_gb=DEFAULT_MEMORY_MIN_GB,
12461246
)
12471247
native_roi = pe.Node(
1248-
MetricRemoveIslands(hemisphere=hemi),
1248+
MetricRemoveIslands(),
12491249
name=f'native_roi_{hemi}',
12501250
mem_gb=DEFAULT_MEMORY_MIN_GB,
12511251
)

0 commit comments

Comments
 (0)