Pull Request №714 RosettaCommons/rosetta/main ← roccomoretti/rosetta/molfile_gzip
Merge: a31d9d50e217e874c57db71bf169052467a8e3d8←24e07ced73aa6046ef5f68ba193608b63a1a06fe
molfile_to_params: fix support for gzipped files.
----------------
Merge commit message:
molfile_to_params: fix support for gzipped files.
In Python3, gzip returns a bytes-based object, rather than a string one (which is what open() returns), which results in errors later.
We can use TextIOWrapper to fix the issue.