What is known about HIV using Bio2RDF's SPARQL endpoints ?
To answer this question Bio2RDF Atlas about mouse and human genome sparql endpoint available at http://atlas.bio2rdf.org/sparql is searched. The selected URIs are then loaded into your local Virtuoso triplestore at http://localhost:8890/sparql. You must enable insert mode into the graph.
Once the mashup is built, two SPARQL queries analyze the obtained graph. Finally you can submit queries to the RDF mashup about HIV as you like. Enjoy.
This is the queries present in this workflow :
CONSTRUCT {
?s ?p ?o .
}
FROM < geneid,uniprot,omim,pubmed,go >
WHERE {
?s ?p ?o .
?o bif:contains "hiv" .
}
then
SELECT * WHERE {?s ?p ?o}
then
SELECT ?type, count(*)
WHERE {
?s <rdf:type> ?type .
}
Preview
Run
Run this Workflow in the Taverna Workbench...
Option 1:
Copy and paste this link into File > 'Open workflow location...'
http://www.myexperiment.org/workflows/644/download?version=2
[ More Info ]
Workflow Components
![header=[] body=[This is the author information extracted from the workflow version] cssheader=[boxoverTooltipHeader] cssbody=[boxoverTooltipBody] delay=[200] Information](/images/famfamfam_silk/information.png?1680607579)
![header=[] body=[These are the descriptive titles embedded within the workflow version] cssheader=[boxoverTooltipHeader] cssbody=[boxoverTooltipBody] delay=[200] Information](/images/famfamfam_silk/information.png?1680607579)
![header=[] body=[These are the descriptions embedded within the workflow version] cssheader=[boxoverTooltipHeader] cssbody=[boxoverTooltipBody] delay=[200] Information](/images/famfamfam_silk/information.png?1680607579)
![header=[] body=[These are the listed dependencies of the workflow] cssheader=[boxoverTooltipHeader] cssbody=[boxoverTooltipBody] delay=[200] Information](/images/famfamfam_silk/information.png?1680607579)
Reviews
(0)
Other workflows that use similar services
(0)
There are no workflows in myExperiment that use similar services to this Workflow.
Log in to make a comment
Dear Francois,
Firstly, congratulation on the great job! I have been looking forward to this for a long time, a binding between Bio2RDF and Taverna.
I have download your workflow and tried to run it using Taverna 2.0. However, no results were ever returned to me. I digged into the workflow and found that the value given to the string processor "virtuoso_server" is http://localhost:8890. Is this the reason why I got no results back? What should I fix to make the workflow run on my local desktop?
Thanks,
Jun
Jun,
I think the workflow assumes that you have a triple-store running locally. Basically it goes and gets the data for you, sticks it into your server, and then lets you query it.
Anyone have this working?