Skip to content

Commit 570e1b5

Browse files
authored
Merge pull request #1755 from oesteban/fix/1721-carpetplot-indexerror
FIX: Passing surface template keywords into carpetplot workflow
2 parents e8e7404 + 43ff580 commit 570e1b5

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,7 @@ jobs:
388388
--sloppy --write-graph --use-syn-sdc --mem_mb 4096 \
389389
--use-aroma \
390390
--skull-strip-template OASIS30ANTs:res-1 \
391-
--output-space T1w template fsaverage5 fsnative \
392-
--template-resampling-grid native \
391+
--output-spaces MNI152NLin2009cAsym fsaverage5 fsnative MNI152NLin6Asym anat \
393392
--use-plugin /home/circleci/src/fmriprep/.circleci/legacy.yml \
394393
--nthreads 2 --cifti-output -vv
395394
- run:
@@ -416,9 +415,8 @@ jobs:
416415
--config $PWD/nipype.cfg -w /tmp/ds005/work_partial \
417416
/tmp/data/ds005 /tmp/ds005/derivatives_partial participant \
418417
--sloppy --write-graph --use-syn-sdc --mem_mb 4096 \
419-
--output-space T1w template fsaverage5 fsnative \
418+
--output-spaces MNI152NLin2009cAsym fsaverage5 fsnative MNI152NLin6Asym anat \
420419
--aroma-melodic-dimensionality 2 --use-aroma \
421-
--template-resampling-grid native \
422420
--nthreads 2 --cifti-output -vv
423421
- run:
424422
name: Checking outputs of partial fMRIPrep run

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ RUN curl -sSL "http://neuro.debian.net/lists/$( lsb_release -c | cut -f2 ).us-ca
7373
RUN apt-get update && \
7474
apt-get install -y --no-install-recommends \
7575
fsl-core=5.0.9-5~nd16.04+1 \
76+
fsl-mni152-templates=5.0.7-2 \
7677
afni=16.2.07~dfsg.1-5~nd16.04+1 \
7778
convert3d \
7879
git-annex-standalone && \

fmriprep/workflows/bold/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ def init_func_preproc_wf(
778778
freesurfer=freesurfer,
779779
mem_gb=mem_gb['resampled'],
780780
omp_nthreads=omp_nthreads,
781-
standard_spaces=std_spaces,
781+
standard_spaces=volume_std_spaces,
782782
name='bold_std_trans_wf',
783783
use_compression=not low_mem,
784784
use_fieldwarp=fmaps is not None,

0 commit comments

Comments
 (0)