Skip to content

Commit 57c35ef

Browse files
committed
MAINT: Update templateflow
1 parent 95c2c52 commit 57c35ef

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@ RUN conda install -y -n base \
266266

267267
# Precaching atlases
268268
COPY scripts/fetch_templates.py fetch_templates.py
269-
RUN ${CONDA_PYTHON} fetch_templates.py && \
269+
RUN ${CONDA_PYTHON} -m pip install --no-cache-dir --upgrade templateflow && \
270+
${CONDA_PYTHON} fetch_templates.py && \
270271
rm fetch_templates.py && \
271272
find $HOME/.cache/templateflow -type d -exec chmod go=u {} + && \
272273
find $HOME/.cache/templateflow -type f -exec chmod go=u {} +

scripts/fetch_templates.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ def fetch_fsLR():
6868
tpl-fsLR/tpl-fsLR_space-fsaverage_hemi-R_den-32k_sphere.surf.gii
6969
"""
7070
tf.get('fsLR', density='32k')
71+
tf.get('fsLR', density="164k", desc="std", suffix="sphere")
72+
tf.get('fsLR', density="164k", suffix="midthickness")
7173

7274

7375
def fetch_MNIInfant(cohort=1):

0 commit comments

Comments
 (0)