All Downloads are FREE. Search and download functionalities are using the official Maven repository.

report_queries.lowercase_definition.rq Maven / Gradle / Ivy

Go to download

Core library for ROBOT: Library for working with OWL ontologies, especially Open Biological and Biomedical Ontologes (OBO).

The newest version!
# # Lowercase Definition
#
# **Problem:** A definition or elucidation does not begin with an uppercase letter. This may be indicative of inconsistent formatting.
#
# **OBO Foundry Principle:** [6 - Textual Definitions](http://www.obofoundry.org/principles/fp-006-textual-definitions.html)
#
# **Solution:** Capitalize the first letter of the definition, or disregard this INFO.

PREFIX obo: 

SELECT DISTINCT ?entity ?property ?value WHERE {
  VALUES ?property { obo:IAO_0000115
                     obo:IAO_0000600 }
  ?entity ?property ?value .
  FILTER (!regex(?value, "^[A-Z0-9]"))
  FILTER (!isBlank(?entity))
}
ORDER BY ?entity




© 2015 - 2025 Weber Informatics LLC | Privacy Policy