We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3773658 commit 7f99d15Copy full SHA for 7f99d15
sgkit/window.py
@@ -70,7 +70,7 @@ def _get_windows(
70
start: int, stop: int, size: int, step: int
71
) -> Tuple[ArrayLike, ArrayLike]:
72
# Find the indexes for the start positions of all windows
73
- # TODO: take contigs into account
+ # TODO: take contigs into account https://github.com/pystatgen/sgkit/issues/335
74
window_starts = np.arange(start, stop, step)
75
window_stops = np.clip(window_starts + size, start, stop)
76
return window_starts, window_stops
0 commit comments