diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-31 15:03:27 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-31 15:03:27 +0200 |
commit | c77e97c6e3ee0c5b95d8529750751393c17d41e5 (patch) | |
tree | cad9a1b92b799bf3fceb175d36c5f6ff80fc4243 | |
parent | 679905abe286b1206716bc8303415d6ba38bfd60 (diff) | |
download | refcat-c77e97c6e3ee0c5b95d8529750751393c17d41e5.tar.gz refcat-c77e97c6e3ee0c5b95d8529750751393c17d41e5.zip |
tasks: include OL into bref
-rw-r--r-- | python/refcat/tasks.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index cc0cf9a..6b4a681 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1181,9 +1181,9 @@ class OpenLibraryReleaseMapped(Refcat): # class Bref(Refcat): """ - Combine bref files from various sources. - - TODO: add "web" outlinks sample + Combine bref files from various sources. Note that we want to include any + dataset which points from fatcat to an external dataset - in order to later + fuse the rest of the unmatched entries with the matches. """ def requires(self): return { @@ -1192,10 +1192,8 @@ class Bref(Refcat): "pmcid": BrefZipPMCID(), "arxiv": BrefZipArxiv(), "fuzzy": BrefZipFuzzy(), - # TODO: we separate ref from non-ref for fusion - # "openlibrary-isbn": BrefOpenLibraryZipISBN(), - # "openlibrary-fuzzy": BrefZipOpenLibrary(), - # "wikipedia-doi": BrefZipWikiDOI(), + "openlibrary-isbn": BrefOpenLibraryZipISBN(), + "openlibrary-fuzzy": BrefZipOpenLibrary(), } def run(self): |