You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently, python3 doesn't like current directory include statements, so the #internal include statement things like from GenomicRegion import GenomicRegion
should be from .GenomicRegion import GenomicRegion
This has shown up for me in
GenomicRegionSet.py, GeneSet.py, helper.py, HINT/Main.py, and HINT/signalProcessing.py
The text was updated successfully, but these errors were encountered:
Apparently, python3 doesn't like current directory include statements, so the #internal include statement things like
from GenomicRegion import GenomicRegion
should be
from .GenomicRegion import GenomicRegion
This has shown up for me in
GenomicRegionSet.py, GeneSet.py, helper.py, HINT/Main.py, and HINT/signalProcessing.py
The text was updated successfully, but these errors were encountered: