Skip to content
Snippets Groups Projects
Commit 58bdbf60 authored by Vermaat's avatar Vermaat
Browse files

Case insensitive gene reference loader (#118)

git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@605 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent 4170f706
No related branches found
No related tags found
No related merge requests found
......@@ -585,7 +585,7 @@ class GenBankRetriever(Retriever):
'Could not get mapping information for gene %s.' % gene)
return None
if summary[0]["NomenclatureSymbol"] == gene : # Found it.
if summary[0]["NomenclatureSymbol"].lower() == gene.lower() : # Found it.
if not summary[0]["GenomicInfo"] :
self._output.addMessage(__file__, 4, "ENOMAPPING",
"No mapping information found for gene %s." % gene)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment