diff --git a/docs/report_queries/missing_subset_declaration.md b/docs/report_queries/missing_subset_declaration.md index 1ab62338f..770021a00 100644 --- a/docs/report_queries/missing_subset_declaration.md +++ b/docs/report_queries/missing_subset_declaration.md @@ -1,9 +1,10 @@ # Missing Subset Declaration -**Problem:** A subset is used in an annotation, but is not properly declared as a child of oboInOwl:SubsetProperty. This can cause problems with conversions to OBO format. +**Problem:** A subset is used in an annotation (via oboInOwl:inSubset), but is not properly declared as a child of oboInOwl:SubsetProperty. This can cause problems with conversions to OBO format, and should be avoided as all subsets should have metadata. **Solution:** Make the subset a child of oboInOwl:SubsetProperty. + ```sparql PREFIX rdfs: PREFIX oboInOwl: @@ -14,4 +15,4 @@ SELECT DISTINCT ?entity ?property ?value WHERE { FILTER NOT EXISTS { ?entity ?property oboInOwl:SubsetProperty } } ORDER BY ?entity -``` \ No newline at end of file +```