diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2019-12-23 18:07:09 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-12-23 18:18:26 -0800 | 
| commit | b7b5e56b55d9699e5882b77293228375bd6099cf (patch) | |
| tree | 7c28c738b4dd73dc153118cfea6386ffd651e368 | |
| parent | 87673154a1b2f51b0bb24e1f83d608ea57ff5936 (diff) | |
| download | fatcat-b7b5e56b55d9699e5882b77293228375bd6099cf.tar.gz fatcat-b7b5e56b55d9699e5882b77293228375bd6099cf.zip | |
pubmed: do reference lookups by default
| -rw-r--r-- | python/fatcat_tools/importers/pubmed.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/python/fatcat_tools/importers/pubmed.py b/python/fatcat_tools/importers/pubmed.py index 64f5a024..1b2d4580 100644 --- a/python/fatcat_tools/importers/pubmed.py +++ b/python/fatcat_tools/importers/pubmed.py @@ -317,7 +317,7 @@ class PubmedImporter(EntityImporter):      TODO: MEDLINE doesn't include PMC/OA license; could include in importer?      """ -    def __init__(self, api, issn_map_file, lookup_refs=False, **kwargs): +    def __init__(self, api, issn_map_file, lookup_refs=True, **kwargs):          eg_desc = kwargs.get('editgroup_description',              "Automated import of PubMed/MEDLINE XML metadata") | 
