Replies: 1 comment
-
You could have a look at https://github.com/FnOio/grel-functions-java/blob/master/src/main/java/io/fno/grel/StringFunctions.java#L407 for an example of what kind of arrays are currently supported in RMLMapper-JAVA, but depending on which engine you use, support may vary |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there! We want to implement reconciliation against SKOS concepts from a given SKOS ConceptScheme, see an example below. We work with Morph-KGC currently.
An input CSV file:
We want to reconcile the values from the
brain_regions
column into IRIs from a given SKOS Concept Scheme, so that we get the following output RDF Turtle file:Our initial idea was to develop an RML Function which takes the following arguments
skos:prefLabel
;
and produces an array of IRIs.
However, we discovered that it's not possible, because only a single value, i.e., not an array, can be produced by an RML Function. Is that a correct conclusion? Do you see other ways to achieve the desired behavior?
Beta Was this translation helpful? Give feedback.
All reactions