SELECT ?doc ?name ?sentence ?sentence_url
WHERE {
GRAPH <https://pubannotation.org/projects/Lectin-Jamboree-small> {
?o1 <https://pubannotation.org/ontology/tao.owl#denoted_by> ?span ; a <__URL__> .
}
GRAPH <https://pubannotation.org/projects/Lectin-Jamboree-Sentence> {
?o2 <https://pubannotation.org/ontology/tao.owl#denoted_by> ?sentence_url .
}
?span <https://pubannotation.org/ontology/tao.owl#has_text> ?name .
?sentence_url <https://pubannotation.org/ontology/tao.owl#contains> ?span .
?sentence_url <https://pubannotation.org/ontology/tao.owl#has_text> ?sentence .
?sentence_url <https://pubannotation.org/ontology/tao.owl#belongs_to> ?doc .
}
|