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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change log

## 1.10.1

|Table |Field |Change notes |
|:-------------------------|:-------------------|:-----------------------------------------------------------------|
|genetic_findings |method_of_discovery |add enumerated value 'Gene panel' |
|experiment_rna_short_read |rna_sample_type |added as optional field |
|experiment_rna_short_read |analyte_id |make requirement conditional on rna_sample_type = 'GREGoR_sample' |


## 1.10

|Table |Field |Change notes |
Expand Down
13 changes: 10 additions & 3 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.10",
"version": "1.10.1",
"tables": [
{
"table": "participant",
Expand Down Expand Up @@ -594,7 +594,7 @@
"column": "method_of_discovery",
"description": "The method/assay(s) used to identify the candidate",
"data_type": "enumeration",
"enumerations": ["SR-ES", "SR-GS", "LR-GS", "SNP array", "Optical mapping", "Karyotype", "SR RNA-seq", "LR RNA-seq", "SR-ES-reanalysis", "SR-GS-reanalysis", "LR-GS-reanalysis", "SNP array-reanalysis", "Optical mapping-reanalysis", "Karyotype-reanalysis", "SR RNA-seq-reanalysis", "LR RNA-seq-reanalysis"],
"enumerations": ["SR-ES", "SR-GS", "LR-GS", "SNP array", "Optical mapping", "Karyotype", "SR RNA-seq", "LR RNA-seq", "SR-ES-reanalysis", "SR-GS-reanalysis", "LR-GS-reanalysis", "SNP array-reanalysis", "Optical mapping-reanalysis", "Karyotype-reanalysis", "SR RNA-seq-reanalysis", "LR RNA-seq-reanalysis", "Gene panel"],
"multi_value_delimiter": "|",
"examples": "SR-GS",
"notes": "Field to be used to capture method of discovery if experiment not currently supported by data model. (eg. >experiment_table_name.id_in_table)"
Expand Down Expand Up @@ -1086,7 +1086,7 @@
},
{
"column": "analyte_id",
"required": true,
"required": "CONDITIONAL (rna_sample_type = GREGoR_sample)",
"data_type": "string",
"references": "> analyte.analyte_id"
},
Expand All @@ -1096,6 +1096,13 @@
"data_type": "string",
"examples": "12339D-SA"
},
{
"column": "rna_sample_type",
"description": "indicates whether experiment_rna_short_read_id corresponds to study sample with analyte_id or an isogenic cell line",
"data_type": "enumeration",
"enumerations": ["GREGoR_sample", "isogenic_cell_line"],
"examples": "GREGoR_sample"
},
{
"column": "seq_library_prep_kit_method",
"description": "Library prep kit used",
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.10"
model_version = "1.10.1"

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