File tree 2 files changed +9
-10
lines changed 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -626,6 +626,7 @@ def parse_args(args=None, namespace=None):
626
626
# Initialize --output-spaces if not defined
627
627
if config .execution .output_spaces is None :
628
628
# TODO: Set a default volumetric output space
629
+ pass
629
630
630
631
# Retrieve logging level
631
632
build_log = config .loggers .cli
Original file line number Diff line number Diff line change @@ -131,16 +131,14 @@ def init_bold_reg_wf(
131
131
name = 'outputnode'
132
132
)
133
133
134
- # if freesurfer:
135
- # bbr_wf = init_bbreg_wf(use_bbr=use_bbr, bold2t1w_dof=bold2t1w_dof,
136
- # bold2t1w_init=bold2t1w_init, omp_nthreads=omp_nthreads)
137
- # else:
138
- # bbr_wf = init_fsl_bbr_wf(use_bbr=use_bbr, bold2t1w_dof=bold2t1w_dof,
139
- # bold2t1w_init=bold2t1w_init, sloppy=sloppy)
140
- # Replace with volumetric registration until better WM/GM contrasts
141
-
142
- bbr_wf = init_fsl_bbr_wf (use_bbr = False , bold2t1w_dof = bold2t1w_dof ,
143
- bold2t1w_init = bold2t1w_init , sloppy = sloppy )
134
+ # Default to no bbr for the moment
135
+ use_bbr = False
136
+ if freesurfer :
137
+ bbr_wf = init_bbreg_wf (use_bbr = use_bbr , bold2t1w_dof = bold2t1w_dof ,
138
+ bold2t1w_init = bold2t1w_init , omp_nthreads = omp_nthreads )
139
+ else :
140
+ bbr_wf = init_fsl_bbr_wf (use_bbr = use_bbr , bold2t1w_dof = bold2t1w_dof ,
141
+ bold2t1w_init = bold2t1w_init , sloppy = sloppy )
144
142
145
143
workflow .connect ([
146
144
(inputnode , bbr_wf , [
You can’t perform that action at this time.
0 commit comments