From db495d7f6887d591ec6be03f17bdbfc84aee60fc Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Wed, 9 Feb 2022 14:27:59 +0100 Subject: [PATCH] tasks: adjust index mode --- python/labe/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/labe/tasks.py b/python/labe/tasks.py index 0ffe0f3..94ad348 100644 --- a/python/labe/tasks.py +++ b/python/labe/tasks.py @@ -260,7 +260,7 @@ def requires(self): def run(self): output = shellout(r""" zstdcat -T0 {input} | - makta -T INTEGER -init -o {output} + makta -I 1 -T INTEGER -init -o {output} """, input=self.input().path) luigi.LocalTarget(output).move(self.output().path)