Coverage for lib/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.11.1, created at 2025-11-09 21:41 +0100
« prev ^ index » next coverage.py v7.11.1, created at 2025-11-09 21:41 +0100
1"""
2optwps - Fast Window Protection Score Calculator
4A high-performance Python package for computing Window Protection Score (WPS) from BAM files,
5designed for cell-free DNA (cfDNA) analysis.
7Example:
8 >>> from lib.optwps import WPS
9 >>> wps = WPS(protection_size=120)
10 >>> wps.run(bamfile='input.bam', out_filepath='output.tsv')
12Version: 1.0.0
13"""
15__version__ = "1.0.0"
16__author__ = "VasLem"
18from .optwps import WPS
20__all__ = ["WPS"]