From ea522bd76251da55b027d906751a00ad8d275eca Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Fri, 21 Feb 2025 13:46:10 +0000 Subject: [PATCH] BF: Handle missing values in feat design files --- fsl/data/featanalysis.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/fsl/data/featanalysis.py b/fsl/data/featanalysis.py index 94c77689..fa972372 100644 --- a/fsl/data/featanalysis.py +++ b/fsl/data/featanalysis.py @@ -544,7 +544,12 @@ def loadFEATDesignFile(filename): if line == '': continue - name, value = line.split(maxsplit=1) + tokens = line.split(maxsplit=1) + if len(tokens) == 1: + name, value = tokens[0], '' + else: + name, value = tokens + fields[name] = value return fields -- GitLab