-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 3 Conversion #12
Comments
It looks like I've hit a block in my python3 efforts - ngslib, which contains BigWigFile and is imported in HINT/signalProcessing.py, appears to be a python 2.7 dependency... |
Pull request #46 has provided the first piece of the Python 3 puzzle. Some more work required on HINT, plus extensive testing, and then onto verifying each library's compatibility. |
This now has higher priority. We'll probably drop Python 2.7 support and completely move to Python 3. |
Finished with version 0.13.0. |
I've encountered a few typos with setup.py when running with python 3.5. When I tried this:
python setup.py install --prefix=/local/tools/HINT-1.1.1 --rgt-data-path=/local/tools/HINT-1.1.1 --rgt-tool=hint
I got the following error:
which I corrected by changing line 132 to:
then I got the following error:
which I corrected by changing line 398 and 299 to:
(apparently python3 doesn't like numbers beginning with 0. Octal numbers start with 0o)
then, the setup works. But then I get some errors when I attempt to run rgt-hint... I'll get to those in another issue.
The text was updated successfully, but these errors were encountered: