Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name = "OMOPCommonDataModel"
uuid = "ba65db9e-6590-4054-ab8a-101ed9124986"
authors = ["Dilum Aluthge", "Brown Center for Biomedical Informatics", "JuliaHealth", "contributors"]
version = "0.1.4"
version = "0.2.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
PrettyPrint = "8162dcfd-2161-5ef2-ae6c-7681170c5f98"

[compat]
DataFrames = "0.21"
DocStringExtensions = "0.8"
DataFrames = "1"
DocStringExtensions = "0.8, 0.9"
PrettyPrint = "0.2"
StructArrays = "0.4"
StructArrays = "0.4, 0.5, 0.6"
Tables = "1"
julia = "1.1"

Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,13 @@
Pure Julia implementation of the [OMOP Common Data Model (CDM)](https://github.com/OHDSI/CommonDataModel).

Please see the [documentation](https://JuliaHealth.github.io/OMOPCommonDataModel.jl/stable).

OMOP CDM versions 5.4.1 and 5.3.1 are supported.
The value for `OMOP_CDM_VERSION` is read from the Julia environment, with `v5.4.1` being the default value.

## Example
```julia
using CSV, DataFrames, OMOPCommonDataModel

CSV.File("person.csv",types=[Person.types...]) |> DataFrame
```
Loading