Skip to content
Merged
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change log

## 1.9.1

|Table |Field |Change notes |
|:-------------------------|:---------------|:---------------------------------------------------------------|
|genetic_findings |variant_type |removed SNV/INDEL as enumerated value; use SNV or INDEL instead |
|participant |sex_detail |updated description |


## 1.9

|Table |Field |Change notes |
Expand Down
8 changes: 4 additions & 4 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.9",
"version": "1.9.1",
"tables": [
{
"table": "participant",
Expand Down Expand Up @@ -116,7 +116,7 @@
},
{
"column": "sex_detail",
"description": "Optional free-text field to describe known discrepancies between 'sex' value (female=>XX, male=>XY) and actual sex chromosome karyotype",
"description": "Optional free-text field to describe known discrepancies between 'sex' value (female=>XX, male=>XY) and actual sex chromosome karyotype or other relevant details",
"data_type": "string",
"examples": ["XXY expected", "XY expected [for someone assigned female at birth with XY DSD]"]
},
Expand Down Expand Up @@ -343,10 +343,10 @@
"column": "variant_type",
"required": true,
"data_type": "enumeration",
"enumerations": ["SNV/INDEL", "SV", "RE", "SNV", "INDEL", "CNV", "MEI", "STR"],
"enumerations": ["SNV", "INDEL", "SV", "RE", "CNV", "MEI", "STR"],
"multi_value_delimiter": "|",
"examples": "SNV|CNV",
"notes": "SNV/INDEL: single nucelotide variants or short insertion/deletions (<50bp)\nRE: repeat elements\nSV: structural variants, including copy number variants and mobile element insertions"
"notes": "SNV: single nucelotide variants\nINDEL: short insertion/deletions (<50bp)\nSV: structural variants\nRE: repeat elements\nCNV: copy number variants\nMEI: mobile element insertions\nSTR: short tandem repeats"
},
{
"column": "sv_type",
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/1p_0nhKMvKBueSrUAQMCe9cHv16WyhKSX_jnxNCuGFWg"
model_name = "GREGoR Data Model"
model_description = "Data model for the GREGoR consortium"
model_version = "1.9"
model_version = "1.9.1"

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