Skip to content

Commit b0ea7c4

Browse files
committed
1 parent fffeed7 commit b0ea7c4

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

fmriprep/__about__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@
104104

105105

106106
LINKS_REQUIRES = [
107+
'git+https://github.com/oesteban/niworkflows.git@'
108+
'7dd12a501dc9eb6c0bbfc699b99742d3481ae9a2#egg=niworkflows-0.8.0'
107109
]
108110

109111
TESTS_REQUIRES = [

fmriprep/workflows/bold/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ def init_func_derivatives_wf(output_dir, output_spaces, template, freesurfer,
879879
if 'T1w' in output_spaces:
880880
ds_bold_t1 = pe.Node(
881881
DerivativesDataSink(base_directory=output_dir, space='T1w', desc='preproc',
882-
keep_dtype=True, compress=True),
882+
keep_dtype=True, compress=True, SkullStripped=False),
883883
name='ds_bold_t1', run_without_submitting=True,
884884
mem_gb=DEFAULT_MEMORY_MIN_GB)
885885
ds_bold_t1_ref = pe.Node(
@@ -920,7 +920,7 @@ def init_func_derivatives_wf(output_dir, output_spaces, template, freesurfer,
920920
if 'template' in output_spaces:
921921
ds_bold_mni = pe.Node(
922922
DerivativesDataSink(base_directory=output_dir, space=template, desc='preproc',
923-
keep_dtype=True, compress=True),
923+
keep_dtype=True, compress=True, SkullStripped=False),
924924
name='ds_bold_mni', run_without_submitting=True,
925925
mem_gb=DEFAULT_MEMORY_MIN_GB)
926926
ds_bold_mni_ref = pe.Node(

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
git+https://github.com/oesteban/niworkflows.git@7dd12a501dc9eb6c0bbfc699b99742d3481ae9a2#egg=niworkflows-0.8.0
12
smriprep<0.2.0a0,>=0.1.0

0 commit comments

Comments
 (0)