From 9e1c8ced8063d56ddd10683903e388374f0e8362 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Sun, 9 May 2021 11:30:42 +0200 Subject: update task UnmatchedRefs --- python/refcat/tasks.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 44bbe26..02f61d3 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -249,7 +249,8 @@ class ReleaseExportReduced(Refcat): class UnmatchedRefs(Refcat): """ - File with not yet considered refs (e.g. no title, doi, ...) + File with not yet considered refs (e.g. no title, doi, ...); around + 260749705. """ def requires(self): return RefsWithUnstructured() @@ -283,10 +284,11 @@ class URLTabs(Refcat): output = shellout(""" zstdcat -T0 {input} | skate-map -m ru | - LC_ALL=C sort -k3,3 -S25% --parallel 4 | + LC_ALL=C sort -T {tmpdir} -k3,3 -S25% --parallel 4 | zstd -T0 -c > {output} """, n=self.n, + tmpdir=self.tmpdir, input=self.input().path) luigi.LocalTarget(output).move(self.output().path) -- cgit v1.2.3