Running geopephub produces this warning:
geopephub/metageo_pephub.py:198: SyntaxWarning: invalid escape sequence '\.'
filter="\.(bed|bigBed|narrowPeak|broadPeak)\.",
The regex string should use a raw string (r"...") or double-escape the backslashes (\\.).
Running geopephub produces this warning:
The regex string should use a raw string (
r"...") or double-escape the backslashes (\\.).