@prefix ex:<https://purl.expasy.org/sparql-examples/neXtProt/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

ex:NXQ_00053 a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "Proteins which are involved in cell adhesion according to GO with an evidence which is not used in automatic assertion nor a sequence similarity evidence used in manual assertion"@en ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX : <http://nextprot.org/rdf/>
PREFIX nextprot_cv: <http://nextprot.org/rdf/terminology/>

SELECT DISTINCT ?entry WHERE {
 ?entry :isoform/:function ?statement.
 ?statement :term / :childOf nextprot_cv:GO_0007155.
 filter not exists { ?statement :negativeEvidence ?negev. } # No negative function evidence
 ?statement :evidence/:evidenceCode ?ecode.
 filter not exists { ?ecode :childOf nextprot_cv:ECO_0000501. } # Automatic assertion
 filter not exists { ?ecode :childOf nextprot_cv:ECO_0000250. } # Sequence similarity evidence used in manual assertion
}""" ;
    schema:keywords "function",
        "method",
        "tutorial" ;
    schema:target <https://sparql.nextprot.org/sparql> .

