LucaCappelletti94/epigenomic_dataset

View on GitHub
build/lib/epigenomic_dataset/utils/window_sizes.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Submodule relative to cell lines utilities."""
from typing import List


def get_window_sizes() -> List[int]:
    """Return list of the available window sizes."""
    return [
        64, 128, 256, 512, 1024
    ]