summaryrefslogtreecommitdiffstats
path: root/python/fatcat_import.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_import.py')
-rwxr-xr-xpython/fatcat_import.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/fatcat_import.py b/python/fatcat_import.py
index 90bb01a1..c6c74bc2 100755
--- a/python/fatcat_import.py
+++ b/python/fatcat_import.py
@@ -173,6 +173,7 @@ def run_datacite(args):
bezerk_mode=args.bezerk_mode,
debug=args.debug,
lang_detect=args.lang_detect,
+ extid_map_file=args.extid_map_file,
insert_log_file=args.insert_log_file)
if args.kafka_mode:
KafkaJsonPusher(fci, args.kafka_hosts, args.kafka_env, "api-datacite",
@@ -461,6 +462,9 @@ def main():
sub_datacite.add_argument('issn_map_file',
help="ISSN to ISSN-L mapping file",
default=None, type=argparse.FileType('r'))
+ sub_datacite.add_argument('--extid-map-file',
+ help="DOI-to-other-identifiers sqlite3 database",
+ default=None, type=str)
sub_datacite.add_argument('--kafka-mode',
action='store_true',
help="consume from kafka topic (not stdin)")