How to extract organism information from the Expression Atlas experiments using SPARQL queries
0
0
Entering edit mode
8.1 years ago
deepue ▴ 160

I have been extracting the list of experiments from Expression Atlas with accession numbers, platform information using the below query.

query <- "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX atlasterms: <http://rdf.ebi.ac.uk/terms/atlas/>
SELECT DISTINCT ?experiment ?accession ?description ?platform WHERE
{?experiment
a atlasterms:Experiment ;
dcterms:identifier ?accession ;
dcterms:description ?description ;
atlasterms:hasAnalysis
[atlasterms:hasExpressionValue 
[atlasterms:isMeasurementOf 
[atlasterms:partOfPlatform ?platform] ] ] }"

I would like to extract the organism information besides the existing details. I have come across the atlas term isAbout, but wasn 't successful in extracting the required information.

Could you please advise on how to achieve this ?

R SPARQL ExpressionAtlas rdf • 1.6k views
ADD COMMENT

Login before adding your answer.

Traffic: 1044 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6