We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 988a423 commit 698fa3cCopy full SHA for 698fa3c
fmriprep/workflows/bold/resampling.py
@@ -29,6 +29,7 @@
29
# See https://github.com/poldracklab/fmriprep/issues/768
30
PatchedConcatenateLTA as ConcatenateLTA
31
)
32
+from ..anatomical import TEMPLATE_MAP
33
34
from .util import init_bold_reference_wf
35
@@ -259,7 +260,7 @@ def _aslist(in_value):
259
260
261
gen_ref = pe.Node(GenerateSamplingReference(), name='gen_ref',
262
mem_gb=0.3) # 256x256x256 * 64 / 8 ~ 150MB)
- template_str = nid.TEMPLATE_MAP[template]
263
+ template_str = TEMPLATE_MAP[template]
264
gen_ref.inputs.fixed_image = op.join(nid.get_dataset(template_str), '1mm_T1.nii.gz')
265
266
mask_mni_tfm = pe.Node(
0 commit comments