It looks like on line 480 of AnnotatorCore.py, open(eventfile, 'rU'), the mode for open() is set as rU. I believe python 3.11+ no longer has U as one of the valid modes, which causes some run time issues as is (if you're using 3.11 and newer, of course).
Hello,
It looks like on line 480 of AnnotatorCore.py, open(eventfile, 'rU'), the mode for open() is set as rU. I believe python 3.11+ no longer has U as one of the valid modes, which causes some run time issues as is (if you're using 3.11 and newer, of course).
https://docs.python.org/3/whatsnew/3.11.html#porting-to-python-3-11
In any case, whether this is a real issue or not, I appreciate the great work your organization contributes to the research community.