aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/refcat/tasks.py12
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):