Skip to content

Commit

Permalink
Merge pull request #140 from oncokb/zhx828-patch-1
Browse files Browse the repository at this point in the history
Strip column header to avoid unnecessary spaces
  • Loading branch information
zhx828 authored Oct 25, 2021
2 parents 1aca454 + 24b6d66 commit 70974f6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions AnnotatorCore.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70974f6

Please sign in to comment.