From e65348a37fdb2478a3b68fe7ce51667d89dc5a6b Mon Sep 17 00:00:00 2001 From: Jay-sanjay <134289328+Jay-sanjay@users.noreply.github.com> Date: Mon, 9 Sep 2024 10:13:51 +0530 Subject: [PATCH] Update beginner_tutorial.md --- docs/src/beginner_tutorial.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/docs/src/beginner_tutorial.md b/docs/src/beginner_tutorial.md index 282fc54..d82f0cc 100644 --- a/docs/src/beginner_tutorial.md +++ b/docs/src/beginner_tutorial.md @@ -58,30 +58,6 @@ conn = DB(eunomia) ``` With Eunomia, the database's schema is simply called "main". -We will use this to generate database connection details that will inform `OMOPCDMCohortCreator` about the type of queries we will write (i.e. SQLite) and the name of the database's schema. -For this step, we will use `OMOPCDMCohortCreator`: - -```julia -import OMOPCDMCohortCreator as occ - -occ.GenerateDatabaseDetails( - :sqlite, - "main" -) -``` - -Finally, we will generate internal representations of each table found within Eunomia for OMOPCDMCohortCreator to use: - -```julia -occ.GenerateTables(conn) -``` - -As a check to make sure everything was correctly installed and works properly, the following block should work and return a list of all person ids in this data: - -```julia -occ.GetDatabasePersonIDs(conn) -``` - ## Building Pathways 🚀