From 7aecb004aa1a149961d8c5ae42943821e9f473a2 Mon Sep 17 00:00:00 2001
From: Paul McCarthy <pauldmccarthy@gmail.com>
Date: Thu, 3 May 2018 14:06:38 +0100
Subject: [PATCH] BF: Another fix - label atlas value does not correspond to
 its index in the AtlasDescription.labels list.

---
 fsl/scripts/atlasq.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fsl/scripts/atlasq.py b/fsl/scripts/atlasq.py
index 502965767..4b87509c0 100644
--- a/fsl/scripts/atlasq.py
+++ b/fsl/scripts/atlasq.py
@@ -315,7 +315,7 @@ def ohi(namespace):
             labels = labels[0]
 
             if labels is None: label = 'Unclassified'
-            else:              label = atlasDesc.labels[int(labels)].name
+            else:              label = atlasDesc.find(value=int(labels)).name
             print('<b>{}</b><br>{}'.format(atlasDesc.name, label))
 
         elif atlasDesc.atlasType == 'probabilistic':
-- 
GitLab