From 9330dc81f5e35b9317b4251c2d5ae10012654d91 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Mon, 22 Oct 2018 11:47:46 +0100 Subject: [PATCH] RF: Allow giftis which don't have a .surf.gii suffix --- fsl/data/gifti.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fsl/data/gifti.py b/fsl/data/gifti.py index d957d75c1..b0b018c20 100644 --- a/fsl/data/gifti.py +++ b/fsl/data/gifti.py @@ -34,13 +34,15 @@ import fsl.data.constants as constants import fsl.data.mesh as fslmesh -ALLOWED_EXTENSIONS = ['.surf.gii'] +# We include '.gii' here because not all surface +# GIFTIs follow the file suffix convention. +ALLOWED_EXTENSIONS = ['.surf.gii', '.gii'] """List of file extensions that a file containing Gifti surface data is expected to have. """ -EXTENSION_DESCRIPTIONS = ['GIFTI surface file'] +EXTENSION_DESCRIPTIONS = ['GIFTI surface file', 'GIFTI file'] """A description for each of the :data:`ALLOWED_EXTENSIONS`. """ -- GitLab