Skip to content

Commit

Permalink
Merge pull request #88 from deepakunni3/fix-coord-transform
Browse files Browse the repository at this point in the history
Fix URL for SciBite CORD-19 annotated dataset
  • Loading branch information
justaddcoffee committed Apr 10, 2020
2 parents ad148e1 + 0e58007 commit 2e2fb44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions download.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
# SciBite CORD-19 annotations v1.2
#
-
url: http://idg.berkeleybop.io/CORD-19_1_2.zip
local_name: CORD-19_1_2.zip
url: https://s3.eu-west-2.amazonaws.com/scibite.covid19data/CORD19/annotated-cord19/CORD-19_1_3.zip
local_name: CORD-19_1_3.zip

# SciBite CORD-19 entity co-occurrences v1.0
-
Expand Down
2 changes: 1 addition & 1 deletion kg_covid_19/transform_utils/scibite_cord/scibite_cord.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def run(self, data_files: List = None) -> None:
"""
if not data_files:
data_files = list()
data_files.append(os.path.join(self.input_base_dir, "CORD-19_1_2.zip"))
data_files.append(os.path.join(self.input_base_dir, "CORD-19_1_3.zip"))
data_files.append(os.path.join(self.input_base_dir, "cv19_scc.zip"))

self.node_header = ['id', 'name', 'category', 'description']
Expand Down

0 comments on commit 2e2fb44

Please sign in to comment.