Skip to content

Commit

Permalink
add UCI to allowed values for gregor_center
Browse files Browse the repository at this point in the history
  • Loading branch information
smgogarten committed Apr 3, 2024
1 parent 6798130 commit 51bc920
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
|experiment_pac_bio |includes_CpG_methylation |added; not required |
|experiment_pac_bio |by_strand |added; not required |
|participant |solve_status |change to enumerated values |
|participant |gregor_center |add UCI to enumerated values |


## 1.3
Expand Down
4 changes: 2 additions & 2 deletions GREGoR_data_model.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "GREGoR Data Model",
"description": "Data model for the GREGoR consortium",
"version": "1.4.1",
"version": "1.4.2",
"tables": [
{
"table": "participant",
Expand All @@ -28,7 +28,7 @@
"required": true,
"description": "GREGoR Center to which the participant is originally associated",
"data_type": "enumeration",
"enumerations": ["BCM", "BROAD", "CNH_I", "UW_CRDR", "GSS", "UW_DCC"]
"enumerations": ["BCM", "BROAD", "CNH_I", "UCI", "UW_CRDR", "GSS", "UW_DCC"]
},
{
"column": "consent_code",
Expand Down
2 changes: 1 addition & 1 deletion sheets_to_JSON.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ library(jsonlite)
url <- "https://docs.google.com/spreadsheets/d/1NcB5pz7rWr2AJpjmDFu6v5E5pGVWmAoaS2kH-pF86H8"
model_name = "GREGoR Data Model"
model_description = "Data model for the GREGoR consortium"
model_version = "1.4.1"
model_version = "1.4.2"

# table metadata
meta <- read_sheet(url, sheet="Table overview/status", skip=1)
Expand Down

0 comments on commit 51bc920

Please sign in to comment.