diff options
-rw-r--r-- | python/refcat/tasks.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 6767a7c..a67e430 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -765,6 +765,31 @@ class OpenLibraryRelease(Refcat): def output(self): return luigi.LocalTarget(path=self.path(ext="json.zst"), format=Zstd) +class OpenLibraryMapped(Refcat): + """ + A mapped open library editions set. + """ + mapper = luigi.Parameter(default="ts", description="mapper short name") + + def requires(self): + return OpenLibraryRelease() + + def run(self): + output = shellout(""" + zstdcat -T0 {input} | + skate-map -m {mapper} -skip-on-empty 1 | + LC_ALL=C sort -T {tmpdir} -k1,1 -S25% --parallel 4 | + zstd -T0 -c > {output} + """, + n=self.n, + mapper=self.mapper, + tmpdir=self.tmpdir, + input=self.input().path) + luigi.LocalTarget(output).move(self.output().path) + + def output(self): + return luigi.LocalTarget(path=self.path(ext="tsv.zst"), format=Zstd) + class UnmatchedMapped(Refcat): """ |