CemConnector is built on top of HADES.
This is an API and client for the Common Evidence Model that takes in data from clinical trials, spontaneous reports, labels and literature.
library(CemConnector)
cemConnectorUrl <- "https://cem.ohdsi.org"
cemConnection <- createCemConnection(apiUrl = cemConnectorUrl)
myExposureConceptSet <- data.frame(conceptId = 1201620, includeDescendants = 1, isExcluded = 0)
# Get 50 negative control concepts for this exposure
cemConnection$getSuggestedControlCondtion(myExposureConceptSet)
# Get any related evidence for this exposure and an outcome of interest
myOutcomeConceptSet <- data.frame(conceptId = 4149320, includeDescendants = 1, isExcluded = 0)
cemConnection$getRelationships(myExposureConceptSet, myOutcomeConceptSet, conditionSiblingLookupLevels = 1)
For instructions on building good concept sets see PHEOBE.
CemConnector is an R package.
Requires R. Libraries used in CemConnector require Java.
See the instructions here for configuring your R environment, including Java.
In R, use the following commands to download and install CemConnector:
r
install.packages("remotes")
remotes::install_github("ohdsi/CemConnector")
Read here how you can contribute to this package.
CemConnector is licensed under Apache License 2.0
CemConnector is being developed in R Studio and PyCharm (with R plugins).
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.