Skip to content

Commit ca8f256

Browse files
committed
fix: update anat workflow to new api / fix packaging test
1 parent 670c7a4 commit ca8f256

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ jobs:
470470
which dmriprep | grep wheel\\/bin
471471
INSTALLED_VERSION=$(dmriprep --version)
472472
INSTALLED_VERSION=${INSTALLED_VERSION%$'\r'}
473-
INSTALLED_VERSION=${INSTALLED_VERSION#*"dmriprep v"}
473+
INSTALLED_VERSION=${INSTALLED_VERSION#*"dMRIPrep v"}
474474
echo "VERSION: \"$THISVERSION\""
475475
echo "INSTALLED: \"$INSTALLED_VERSION\""
476476
test "$INSTALLED_VERSION" = "$THISVERSION"

dmriprep/workflows/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,15 @@ def init_single_subject_wf(subject_id):
201201
freesurfer=config.workflow.run_reconall,
202202
hires=config.workflow.hires,
203203
longitudinal=config.workflow.longitudinal,
204-
num_t1w=len(subject_data['t1w']),
205204
omp_nthreads=config.nipype.omp_nthreads,
206205
output_dir=str(config.execution.output_dir),
207206
reportlets_dir=reportlets_dir,
208207
skull_strip_fixed_seed=config.workflow.skull_strip_fixed_seed,
209-
# skull_strip_mode='force',
208+
skull_strip_mode='force',
210209
skull_strip_template=Reference.from_string(
211210
config.workflow.skull_strip_template)[0],
212211
spaces=spaces,
212+
t1w=subject_data['t1w'],
213213
)
214214

215215
workflow.connect([

0 commit comments

Comments
 (0)