A set of SPARQL examples that are used in different SIB resources
Proteins with 10 or more gold interactions with SH3 domain-containing proteins
PREFIX : <http://nextprot.org/rdf/>
PREFIX nextprot_cv: <http://nextprot.org/rdf/terminology/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform ?iso.
?iso :interaction ?it.
?it :quality :GOLD.
?it :interactant ?interactant.
?interactant :isoform? / :domain / :term nextprot_cv:DO-00615. # SH3
}
group by ?entry having (count (distinct ?interactant) >= 10)