diff options
-rw-r--r-- | python/refcat/tasks.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index fc9af2b..7bcfd34 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -866,8 +866,8 @@ class UnmatchedMapped(Refcat): class UnmatchedResolveJournalNames(Refcat): """ - Try to resolve journal names so we can match against both abbreviations and - full names. + Try to resolve journal names so we can match against both abbreviations. + Keep only the resolved docs (for now). """ def requires(self): return UnmatchedMapped() @@ -875,7 +875,7 @@ class UnmatchedResolveJournalNames(Refcat): def run(self): output = shellout(""" zstdcat -T0 {input} | - skate-resolve-journal-name -f 2 -B -A {abbrev} | + skate-resolve-journal-name -R -f 2 -B -A {abbrev} | zstd -T0 -c > {output} """, abbrev=settings.JOURNAL_ABBREVIATIONS, |