Skip to content

Commit

Permalink
Fix biolink terms per Deepak's suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
justaddcoffee committed Apr 10, 2020
1 parent 2e2fb44 commit ece2c11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions kg_covid_19/transform_utils/zhou_host_proteins/zhou_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ def run(self) -> None:
input_file = os.path.join(self.input_base_dir, '41421_2020_153_MOESM1_ESM.pdf')

pubmed_curie_prefix = 'PMID:'
gene_curie_prefix = 'NCBI:'
publication_node_type = 'Biolink:Publication'
gene_node_type = 'Biolink:Gene'
virus_node_type = 'Biolink:OrganismalEntity'
gene_curie_prefix = 'NCBIGene:'
publication_node_type = 'biolink:Publication'
gene_node_type = 'biolink:Gene'
virus_node_type = 'biolink:OrganismalEntity'

# list of RO interactions:
# https://raw.githubusercontent.com/oborel/obo-relations/master/subsets/ro-interaction.owl
host_gene_vgene_edge_label = 'biotically interacts with'
host_gene_vgene_edge_label = 'biolink:interacts_with'
host_gene_vgene_relation = 'RO:0002437'

ncbitaxon_curie_prefix = 'NCBITaxon:'
Expand Down

0 comments on commit ece2c11

Please sign in to comment.