query-c4bbeb7a689357b1bbbf76f1fa030613

rq turtle/ttl

Why are (some) Gene Ontology protein complexes (cellular components) also instances of family of protein complexes (Q78155096)?This is a temporary solution but not very wrong. Contrary to Complex Portal entries and Reactome protein complexes, Gene Ontology complexes are species-independent, so if the set of all complexes that are defined by such an entry is homologous then it is a family. Of course the condition is that the parts are always the same, i.e. they are from the same protein families. This can change and make sub-entries necessary later. However, at the moment this slowly growing part of Wikidata is to our knowledge the only existing database of species-independent protein complexes linking them to their parts families. For an overview, there are currently 2,579 complexes in GO. We have annotated the parts of 35 of them, and encourage you to add those you are interested in. Query:

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item ?label WHERE {
  ?item wdt:P31 wd:Q78155096.
  ?item wdt:P31 wd:Q5058355.
  ?item wdt:P2670 [].
  ?item rdfs:label ?label.
  FILTER(lang(?label) = 'en')
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?label"):::projected a1((" ")) c3(["wd:Q78155096"]):::iri c4(["wd:Q5058355"]):::iri f0[["?label = 'en'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"wdt:P31"--> c4 v2 --"wdt:P2670"--> a1 v2 --"rdfs:label"--> v1