Skip to content

Commit 959c57e

Browse files
author
David Ellis
committed
FIX: switches incorrect if statement.
1 parent aaf3b05 commit 959c57e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/workflows/smri/freesurfer/autorecon3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ def out_aseg(in_aparcaseg, in_aseg, out_file):
936936
(volume_mask, outputspec, [('out_ribbon', 'ribbon'),
937937
('lh_ribbon', 'lh_ribbon'),
938938
('rh_ribbon', 'rh_ribbon')])])
939-
if fsvernum < 6:
939+
if fsvernum > 6:
940940
ar3_wf.connect([(relabel_hypos, outputspec, [('out_file', 'aseg_presurf_hypos')])])
941941

942942

0 commit comments

Comments
 (0)