channotation / chap

CHAP is a tool for the functional annotation of ion channel structures:
http://www.channotation.org
Other
18 stars 10 forks source link

Make wobj.py Python3 Compatible #12 #42

Closed DSeiferth closed 2 years ago

DSeiferth commented 2 years ago

I committed a python3 compatible version of wobj.py (called wobj_python3.py). I replaced every map() with list(map()) in the wobj.py script because In Python 3, " map" returns an iterable object of type map, and not a subscriptible list. This should fix issue #12.

channotation commented 2 years ago

Thanks David.