Skip to content

Commit

Permalink
removed a non-relevant comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcisiotmf authored Nov 22, 2024
1 parent fafc99a commit 5aaec73
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/sparql_llm/embed_entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,20 +217,19 @@ def generate_embeddings_for_entities():
up:scientificName ?label .
}""",
},
,
"uniprot_disease": {
"uri": "http://purl.uniprot.org/core/Disease",
"label": "Disease",
"description": "The preferred names of diseases.",
"endpoint": "https://sparql.uniprot.org/sparql/",
"pagination": False,
"query": """PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX up: <http://purl.uniprot.org/core/>
SELECT ?uri ?label ?type WHERE {
?uri a up:Disease ;
skos:prefLabel ?label .
} """,
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX up: <http://purl.uniprot.org/core/>
SELECT ?uri ?label ?type WHERE {
?uri a up:Disease ;
skos:prefLabel ?label .
}""",
},
}

Expand Down

0 comments on commit 5aaec73

Please sign in to comment.