From 24b6d6656f08254d4c734cccf6d0b263e8d8a2dc Mon Sep 17 00:00:00 2001 From: Hongxin <5400599+zhx828@users.noreply.github.com> Date: Mon, 25 Oct 2021 17:48:48 -0400 Subject: [PATCH] Strip column header to avoid unnecessary spaces --- AnnotatorCore.py | 1 + 1 file changed, 1 insertion(+) diff --git a/AnnotatorCore.py b/AnnotatorCore.py index 738312b..4d3ebbf 100644 --- a/AnnotatorCore.py +++ b/AnnotatorCore.py @@ -1768,6 +1768,7 @@ def readheaders(reader): headers["length"] = len(row) i = 0 for h in row: + h=h.strip() headers[h.upper()] = i headers[h] = i i = i + 1