aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/refcat/tasks.py6
1 files 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)