diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-10 10:47:30 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-10 10:47:30 +0200 |
commit | 9bd0df1164893ae344b33cc5461686aa02478b65 (patch) | |
tree | 3a9390dcaf441a87a5d6a95f75ec78743aa25e39 | |
parent | 69b3b6cdafd94394229a5ef41bce89c66f0167e8 (diff) | |
download | refcat-9bd0df1164893ae344b33cc5461686aa02478b65.tar.gz refcat-9bd0df1164893ae344b33cc5461686aa02478b65.zip |
task: fix pipeline
-rw-r--r-- | python/refcat/tasks.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |