diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-08-05 13:17:01 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-08-05 13:17:01 +0200 |
commit | df126d7252bea6d3877cb67211a34f14788aa358 (patch) | |
tree | a30e9e0ffcda60f983c6ba02dafc1bcd55eb4459 /python | |
parent | 769ee237046a8553583e0414e1f56877b7f1a847 (diff) | |
download | refcat-df126d7252bea6d3877cb67211a34f14788aa358.tar.gz refcat-df126d7252bea6d3877cb67211a34f14788aa358.zip |
tasks: use a mapper
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 573ec74..66175c8 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -448,8 +448,7 @@ class BrefDOITable(Refcat): def run(self): output = shellout(""" zstdcat -T0 {input} | - parallel --block 10M -j 20 --pipe - "jq -rc '[.source_release_ident, .target_release_ident, .source_doi, .target_doi] | @tsv'" | + skate-map -m bidt | zstd -c -T0 > {output} """, input=self.input().path) |