gitextract_xavh5mxs/ ├── .environmentLinux.yaml ├── .github/ │ └── workflows/ │ ├── build.yml │ └── pypi.yml ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── libBigWig/ │ ├── LICENSE │ ├── README.md │ ├── bigWig.h │ ├── bigWigIO.h │ ├── bwCommon.h │ ├── bwRead.c │ ├── bwStats.c │ ├── bwValues.c │ ├── bwValues.h │ ├── bwWrite.c │ └── io.c ├── pyBigWig.c ├── pyBigWig.h ├── pyBigWigTest/ │ ├── __init__.py │ ├── test.bigBed │ ├── test.bw │ └── test.py ├── pyproject.toml ├── setup.cfg └── setup.py