Skip to content
Snippets Groups Projects
Commit 41e8a4f7 authored by Fabrice  ALLAIN's avatar Fabrice ALLAIN
Browse files

fix: solve raptorx missing alias

parent 610e1e0f
No related branches found
No related tags found
No related merge requests found
......@@ -966,7 +966,8 @@ class MapFileListReader(object):
self.maps.append(PDBFile(filepath))
# TODO: find another solution in the future since
# conio.CONTACT_FILE_PARSERS might be deprecated
elif maptypes[i].lower() in conio.CONTACT_FILE_PARSERS:
elif maptypes[i].lower() in conio.CONTACT_FILE_PARSERS.keys() \
or maptypes[i].lower() in MapFile.conkit_alias:
self.maps.append(ContactMapFile(filepath,
maptypes[i],
conkit_reader=True,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment