We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
A list of distinct authors in BIDS gets converted into a single string in NIDM.
For example, the following dataset_description.json
dataset_description.json
{ "Name": "Example Dataset Name", "BIDSVersion": "1.9.0", "License": "CC0", "Authors": [ "Jane Doe", "John Doe", "Adam Smith" ] }
gets converted into the following RDF (serialized in Turtle - prefixes omitted):
niiri:id123 a bids:Dataset, prov:Collection, prov:Entity ; bids:BIDSVersion "1.9.0"^^xsd:string ; dcterms:license "CC0"^^xsd:string ; dcat:author "Jane DoeJohn DoeAdam Smith"^^xsd:string .
I would have expected the following:
niiri:id123 a bids:Dataset, prov:Collection, prov:Entity ; bids:BIDSVersion "1.9.0"^^xsd:string ; dcterms:license "CC0"^^xsd:string ; dcat:author "Jane Doe"^^xsd:string, "John Doe"^^xsd:string, "Adam Smith"^^xsd:string .
The text was updated successfully, but these errors were encountered:
sounds like a bug indeed... if you get a chance/time to dig it to fix it and send PR -- would be appreciated. Should be an easy fix I hope
Sorry, something went wrong.
I suspect the bug is introduced here. The join seems problematic in general, but perhaps I'm overlooking something.
join
No branches or pull requests
Hi,
A list of distinct authors in BIDS gets converted into a single string in NIDM.
For example, the following
dataset_description.json
gets converted into the following RDF (serialized in Turtle - prefixes omitted):
I would have expected the following:
The text was updated successfully, but these errors were encountered: