From 0cb9738e8c085fc1381a89b9b9087495a459b602 Mon Sep 17 00:00:00 2001 From: Floreal Cabanettes <floreal.cabanettes@inra.fr> Date: Wed, 8 Aug 2018 13:38:28 +0200 Subject: [PATCH] Fix windows --- snakecnv/detection.snk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakecnv/detection.snk b/snakecnv/detection.snk index d113526..17028d1 100644 --- a/snakecnv/detection.snk +++ b/snakecnv/detection.snk @@ -59,7 +59,7 @@ def get_chr_batches(ref_file, chr): groups.append((start, end)) if len_chr + 1 == end: break - start = end - 9999 + start = end - 49999 end = min(start + 9999999, len_chr + 1) last_group = (start, len_chr + 1) if last_group not in groups: -- GitLab