1) Query for finding out different PPI interactions found to occur in the Hypothalamus CONSTRUCT { ?s1 . . ?s1 . } WHERE { ?s1 . ?s1 . . }limit 10 --------------------------------------------------------------------------------------------------------------------- 2) Explanation of the query: ?s1 = represents what the user is interested in = BFO ontology used to define the edge and the id BFO_0000066 denotes the relation "occurs in" = Brain region of interest = the user describes the unknown entry as a type of an interaction (PPI interaction to be more specific) Finally we limit the number of interactions to 10 (for better visualization of the result) --------------------------------------------------------------------------------------------------------------------- 3) USE OF CONSTRUCT INSTEAD OF SELECT CONSTRUCT is an alternative for the standard SELECT used in query language. The CONSTRUCT is used to return an RDF graph while SELECT command displays the result as a table