MaastrichtU-IDS / d2s-sparql-operations

✨️ Execute SPARQL queries from string, URL or multiple files using the RDF4J framework.
https://maastrichtu-ids.github.io/d2s-sparql-operations/
MIT License
1 stars 1 forks source link

Split value in multiple statements #5

Closed vemonet closed 4 years ago

vemonet commented 5 years ago

e.g.: I have IDs : uniprot:P00734, HGNC:3535 And I want to generate 2 statements from it

# From
?s bl:same_as "uniprot:P00734, HGNC:3535" .

# To
?s bl:same_as <http://identifiers.org/uniprot:P00734> .
?s bl:same_as <http://identifiers.org/HGNC:3535> .
vemonet commented 5 years ago

Possible solutions: