From 30cb766e4671c6c5e53ab0518cffa1880d732a00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Fri, 20 Oct 2023 13:23:44 -0400 Subject: [PATCH] ENH: Set the hemisphere location name to the correct name Set the hemisphere location name to the correct name in the bundle feature population math script. --- utilities/wm_compute_bundle_feature_population_math.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/utilities/wm_compute_bundle_feature_population_math.py b/utilities/wm_compute_bundle_feature_population_math.py index b9fbc9c9..2c72d242 100644 --- a/utilities/wm_compute_bundle_feature_population_math.py +++ b/utilities/wm_compute_bundle_feature_population_math.py @@ -45,11 +45,9 @@ class WMABundleFeatureDataMap(enum.Enum): FA2Mean = ("FA2.Mean", float) FWMean = ("FreeWater.Mean", float) # ToDo - # There is a typo in the HemisphereLocataion (vs. HemisphereLocation) - # column: eventually consider both. # HemisphereLocataion.Mean can contain integers, and cannot be cast directly # into integers; would need to do .astype(float).astype("Int64") - HemisphereLocationMean = ("HemisphereLocataion.Mean", float) + HemisphereLocationMean = ("HemisphereLocation.Mean", float) ClusterIdxMean = ("cluster_idx.Mean", float) Trace1Mean = ("trace1.Mean", float) Trace2Mean = ("trace2.Mean", str)