Skip to content

Commit

Permalink
Merge pull request #30 from UW-GAC/update_pheno_model_general
Browse files Browse the repository at this point in the history
Update pheno model general with new variables
  • Loading branch information
atk17 authored Mar 29, 2024
2 parents 82fc59d + c6e5263 commit 5acdc72
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions PRIMED_phenotype_data_model.json
Original file line number Diff line number Diff line change
Expand Up @@ -472,20 +472,23 @@
"description": "standing body height",
"data_type": "float",
"min": 0,
"max": 400,
"examples": "165.1"
},
{
"column": "weight_1",
"description": "body weight at baseline",
"data_type": "float",
"min": 0,
"max": 300,
"examples": "72.574"
},
{
"column": "bmi_1",
"description": "body mass index calculated",
"data_type": "float",
"min": 0,
"max": 100,
"examples": "26.45"
},
{
Expand Down Expand Up @@ -531,12 +534,16 @@
"column": "systolic_bp_1",
"description": "Resting systolic blood pressure from the upper arm in a clinical setting",
"data_type": "float",
"min": 0,
"max": 370,
"examples": "160"
},
{
"column": "diastolic_bp_1",
"description": "Resting diastolic blood pressure from the upper arm in a clinical setting",
"data_type": "float",
"min": 0,
"max": 360,
"examples": "80"
},
{
Expand Down Expand Up @@ -604,6 +611,13 @@
"data_type": "float",
"examples": "98"
},
{
"column": "ldl_emerge_1",
"description": "Blood mass concentration of low-density lipoprotein cholesterol",
"data_type": "float",
"examples": "99",
"notes": "This algorithm was provided for the Pilot harmonization (by Iftikhar Kullo)"
},
{
"column": "non_hdl_1",
"description": "Blood mass concentration of non-high-density lipoprotein cholesterol.",
Expand Down Expand Up @@ -910,7 +924,14 @@
"description": "indicator of coronary artery disease event occurrence using the emerge ehr-based definition",
"data_type": "enumeration",
"enumerations": ["0", "1"],
"notes": "0 = 'no' 1 = 'yes' Missing values can either be left blank or set to NA."
"notes": "0 = 'no' 1 = 'yes' Missing values can either be left blank or set to NA. This algorithm was provided for the Pilot harmonization (provided by Iftikhar Kullo)"
},
{
"column": "cad_emerge_mod_1",
"description": "indicator of coronary artery disease event occurrence developed in PRIMED using a modified version of the emerge ehr-based definition",
"data_type": "enumeration",
"enumerations": ["0", "1"],
"notes": "0 = 'no' 1 = 'yes' Missing values can either be left blank or set to NA. This algorithm was developed by the CVD Events sub-WG"
}
]
},
Expand Down Expand Up @@ -1459,7 +1480,10 @@
"required": true,
"description": "the age at which the observation or measurement for the phenotype(s) were taken",
"data_type": "float",
"examples": "56.2"
"min": 0,
"max": 90,
"examples": "56.2",
"notes": "set all values >89 to 90"
},
{
"column": "visit",
Expand Down

0 comments on commit 5acdc72

Please sign in to comment.