Is there a public SPARQL end point where I query if a particular organism is a plant, animal, or virus? The input I have is an taxonomy identifer, e.g. http://bio2rdf.org/taxonomy:9606, and I want to get the superclass, classification, or so, that tells me this falls in the Animal kingdom.
Technically, this is done by using a reasoning engine, e.g. as outlined in this question. But want to mash up things, and leave a public server in control of updating the end point content, and use federated SPARQL instead of caching the data myself.
The kind of SPARQL I like to fire is:
SELECT * WHERE {
  tax:9606 foo:isA ?kingdom .
  ?kingdom rdf:type bar:Kingdom . 
}
                    
                
                
Your link to "this question" is not correct (links to viruses at uniprot.org instead)
Fixed. Thanx for letting me know.