Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Use standard prefix notations
  2. Use CamelCase for the variables
    1. Nodes and Idividials starting with upper case
    2. Properties starting with lower case
  3. Write all SPARQL key words in capital letters ("SELECT" not "select" or "Select") 
  4. Use BIND to assign all relevant variables a the top of the WHERE statement
  5. For the CQ parameters the "$" is used for the corresponding variable
  6. Provide at least one example in the comments for the variable BINDing
  7. Do not require unique labels of resources (as the queries should be able to run on many different datasets)
  8. Use inverse property pairs to be agnostic to their use e.g., ^idmp-sub:isActiveMoietyOf|idmp-sub:hasActiveMoiety
  9. Use of subproperties?
  10. Use of full vs. shortcut pattern: substance/ingredient role pattern vs. direct "includedIn"

Comment on Entailment Regime

If CQs require any inference then this should be explicitly noted

Example Query


Code Block
languagesql
# UC1-CQ 1: What substances have a common active moiety <M>?
prefix idmp-sub:    <https://spec.pistoiaalliance.org/idmp/ontology/ISO/ISO11238-Substances/>
prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix rdfs:        <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT ?Substance (SAMPLE(?SubstanceLabel) AS ?SubstanceName)
WHERE {
	# Bind Variable ActiveMoiety <M>
    # Example: <https://gsrs.ncats.nih.gov/api/v1/substances/1J444QC288> for GSRS Amlodipine
	BIND(uc1_cq1_parameter_1 AS ?M )
  	
    # Get the Entities that have the defined active moiety
    ?Substance ^idmp-sub:isActiveMoietyOf|idmp-sub:hasActiveMoiety ?M .
    
    # Make sure that we only return actual substances 
  	?Substance a/rdfs:subClassOf* idmp-sub:Substance .
	
    # Optionally, get the name of the substance
	OPTIONAL{?Substance  rdfs:label  ?SubstanceLabel }

} GROUP BY ?Substance

...