Services

Here is a list of services that are provided at GENODESY.

BED database

BED (Biological Entity Dictionary) is an R package to get and explore mapping between identifiers of biological entities (BE). It relies on a Neo4j database in which the relationships between the identifiers from different sources are recorded.

An instance of the BED database (graph dump) is running at GENODESY. The following code shows how to connect to it.

library(BED)
connectToBed(url="https://genodesy.org/BED/", remember=TRUE, useCache=TRUE)
mapt <- convBeIds(
   "MAPT", from="Gene", from.source="Symbol", from.org="human",
   to.source="Ens_gene", restricted=TRUE, prefFilter=TRUE
)
exploreBe(
   mapt$to, source="Ens_gene", be="Gene", showProbes=TRUE
)

For performance purpose, it is recommended to instantiate the BED database close to the computing environment used to run the analyses.

Shiny apps

A portfolio of Shiny apps is displayed on this page.