deeptools / pyBigWig

A python extension for quick access to bigWig and bigBed files
MIT License
216 stars 48 forks source link

pyBigWig can't open Path objects #64

Closed gpratt closed 6 years ago

gpratt commented 6 years ago

This should probably work in python3 but doesn't

from pathlib import Path
import pyBigWig

bw = Path("test.bw")
pyBigWig.open(bw )
dpryan79 commented 6 years ago

Just put a str() around it.