From 9bd0df1164893ae344b33cc5461686aa02478b65 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Thu, 10 Jun 2021 10:47:30 +0200 Subject: task: fix pipeline --- python/refcat/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 3acfa43..0b62564 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1236,8 +1236,8 @@ class BrefSortedByWorkID(Refcat): def run(self): shellout(""" zstdcat -T0 {bref} | - skate-map -m ff -x source_work_ident | - sort -S25% -k1,1 > zstd -c -T0 > {output} + skate-map -B -m ff -x source_work_ident | + LC_ALL=C sort -S25% -k1,1 | zstd -c -T0 > {output} """, bref=self.input().path) luigi.LocalTarget(tmpf).move(self.output().path) -- cgit v1.2.3