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
Expand Up @@ -247,6 +247,15 @@
|called_variants_nanopore |all |DCC added 'Is Unique' column to data model document to support validation - no impact to data submitters. |


## 1.10

|Table |Field |Change notes |
|:----------------|:---------------|:-----------------------|
|participant |sex |updated description |
|aligned_pac_bio |read_length_n50 |added as optional field |
|aligned_nanopore |read_length_n50 |added as optional field |


## 1.1

|Table |Field |Change notes |
Expand Down
16 changes: 14 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.9.2",
"version": "1.10",
"tables": [
{
"table": "participant",
Expand Down Expand Up @@ -110,7 +110,7 @@
{
"column": "sex",
"required": true,
"description": "Biological sex assigned at birth (aligned with All of Us). If individual has a known DSD / not expected sex chromosome karyotype, this can be noted in the phenotype information section.",
"description": "Biological sex assigned at birth (aligned with All of Us). If individual has a known DSD / not expected sex chromosome karyotype, this can be noted in the sex_detail field.",
"data_type": "enumeration",
"enumerations": ["Female", "Male", "Unknown"]
},
Expand Down Expand Up @@ -1721,6 +1721,12 @@
"data_type": "boolean",
"examples": true,
"notes": "See https://fiberseq.github.io/index.html for details on methods and Fiber-seq BAM specific tags"
},
{
"column": "read_length_n50",
"description": "N50 is the shortest read length that, when all reads are sorted by length from longest to shortest, covers 50% of the total sequence data (longer is better). Value in kilobases",
"data_type": "float",
"examples": "15"
}
]
},
Expand Down Expand Up @@ -2157,6 +2163,12 @@
"data_type": "boolean",
"examples": true,
"notes": "See https://fiberseq.github.io/index.html for details on methods and Fiber-seq BAM specific tags"
},
{
"column": "read_length_n50",
"description": "N50 is the shortest read length that, when all reads are sorted by length from longest to shortest, covers 50% of the total sequence data (longer is better). Value in kilobases",
"data_type": "float",
"examples": "15"
}
]
},
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.2"
model_version = "1.10"

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