diff options
-rw-r--r-- | python/refcat/techreport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/refcat/techreport.py b/python/refcat/techreport.py index db99337..48c1084 100644 --- a/python/refcat/techreport.py +++ b/python/refcat/techreport.py @@ -15,7 +15,7 @@ class COCIDOIOnly(Refcat): def run(self): """ https://unix.stackexchange.com/a/37470/376 """ - output = shellout(""" + output = shellout(r""" zstdcat -T0 {input} | tail -n +2 | cut -d , -f2,3 | @@ -37,7 +37,7 @@ class BrefDOIOnly(Refcat): return BrefWithDOI() def run(self): - output = shellout(""" + output = shellout(r""" zstdcat -T0 {input} | parallel --pipe -j 16 --block 10M "jq -rc '[.source_doi, .target_doi] | @csv'" | perl -F, -lane 'printf qq[%s\n], join ",", sort @F' | |