-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Database related error when calling CiCalibration::execute #26
Comments
Yes, this code, pretty much like all OHDSI software, requires you to have fully instantiated the OMOP Common Data Model (CDM). Part of the CDM are the Standardized Vocabularies (e.g. the contents of the CONCEPT table), which can be downloaded from ATHENA. It seems this is your first time using the CDM, in which case I would recommend not starting by running an actual study like CiCalibration. Instead, a recommended first step is to run ACHILLES. This will allow you to profile your data, and perform initial checks of your CDM instance. I also recommend reading the chapter on Data Quality before proceeding. |
Thanks for the info. I was able to initialise the CDM using the scripts from the I then encountered problems with regards to I then modified the code in I also encountered a similar problem where the When I ran
and so on. I think my modifications may not match what the latest version of |
The error message indicates no cohorts were created. I'd be willing to bet something is not right with your CDM installation. Did you run ACHILLES, and asses data quality in other ways? |
I am attempting to run
CiCalibration::execute
function by following the instructions athttps://github.com/OHDSI/StudyProtocols/tree/master/CiCalibration
I have installed the dependencies R packages, installed PostgreSQL server and created the database, as well as the
cdm_data
andresults
schemas. When I ran the code shown at the web page, I get this errorCreating exposure and outcome cohorts Connecting using PostgreSQL driver Creating cohort: DabigatranSouthworth |== | 3%Error: Error executing SQL: org.postgresql.util.PSQLException: ERROR: relation "cdm_data.concept" does not exist Position: 155
Am I supposed to setup other tables before I can run
CiCalibration::execute
?Thanks!
The text was updated successfully, but these errors were encountered: