Community-contributed, FAIR-compliant disease trajectory datasets from GA4GH biohackathon sessions. Each disease gets its own versioned dataset โ machine-readable in RDF Turtle and JSON-LD, queryable via SPARQL, and ready to use as input for your hackathon.
# Python (rdflib)
from rdflib import Graph
g = Graph()
g.parse("https://fdp.semscape.org/ga4gh-rare-disease-trajectories/diseases/index.ttl")
# R (rdflib)
library(rdflib)
url <- "https://fdp.semscape.org/ga4gh-rare-disease-trajectories/diseases/index.ttl"
rdf <- rdf_parse(url, format="turtle")
# curl
curl https://fdp.semscape.org/ga4gh-rare-disease-trajectories/diseases/index.ttl
PREFIX dcat: <https://www.w3.org/ns/dcat#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX ordo: <http://www.orpha.net/ORDO/Orphanet_>
# List all diseases + their ORDO ID
SELECT ?disease ?title ?ordo WHERE {
?disease a dcat:Dataset ;
dcterms:title ?title .
OPTIONAL { ?disease dcterms:subject ?ordo .
FILTER(STRSTARTS(STR(?ordo),
"http://www.orpha.net")) }
}
Each card links to a standalone, versioned FAIR dataset for that disease.
Missing a disease? Submit a case via the BYOD web form โ it takes 5 minutes and no GitHub account is needed. Your submission becomes a versioned FAIR dataset within 60 seconds.
๐ฆ Submit a disease case โ