You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PREFIX nm: <http://nanomine.org/ns/>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT * WHERE {
?sample a nm:PolymerNanocomposite ;
sio:hasComponentPart [ sio:hasRole [ a nm:Filler ] ;
sio:isSurroundedBy [ sio:hasRole [ a nm:SurfaceTreatment ] ;
a [ rdfs:label ?surf_treat ] ;
sio:hasAttribute ?surf_treat_attr]
]
}
returns an empty set. I believe @rashidsabbir addressed this issue recently (we discussed 8/30), pending a push to QA. Including the issue here so that it can be formally closed once the fix is tested and deployed.
The text was updated successfully, but these errors were encountered:
Update on this: ManufacturerOrSourceName now appears as an attribute for Surface Treatment. There are other attributes that I would expect (graft density, polydispersity, etc), however these may require separate updates to the ontology/setlr.
PREFIX nm: <http://nanomine.org/ns/>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?surf_treat_attr WHERE {
?sample a nm:PolymerNanocomposite ;
sio:hasComponentPart [ sio:hasRole [ a nm:Filler ] ;
sio:isSurroundedBy [ sio:hasRole [ a nm:SurfaceTreatment ] ;
a [ rdfs:label ?surf_treat ] ;
sio:hasAttribute [ a ?surf_treat_attr] ]
]
}
The following SPARQL query
returns an empty set. I believe @rashidsabbir addressed this issue recently (we discussed 8/30), pending a push to QA. Including the issue here so that it can be formally closed once the fix is tested and deployed.
The text was updated successfully, but these errors were encountered: