dariushghasemi / kidneyInCHRIS

Genetic determinants of Kidney function in the CHRIS study
1 stars 0 forks source link

Interaction of kidney with thyroid #6

Closed dariushghasemi closed 1 year ago

dariushghasemi commented 1 year ago

Here we tested the potential for the interaction between the replicated Kidney-associated variants and Thyroid function. To do so, we investigated by including the interaction term between the variants in the linear regression in two strategies:

  1. A linear interaction between the variants and quantitative Thyroid Stimulating Hormone (TSH) level. lm(eGFRw.log.Res ~ SNP * TSH + PC1 + PC2 + PC3 + PC4 + PC5 + PC6 + PC7 + PC8 + PC9 + PC10)
  2. A non-linear interaction between the variants and the categorized TSH level (Hyper- and Hypo-thyroidism). lm(eGFRw.log.Res ~ SNP * TSH_cat + PC1 + PC2 + PC3 + PC4 + PC5 + PC6 + PC7 + PC8 + PC9 + PC10)

Note: To account for the samples relatedness and population stratification we added the 10 first principal components to the model.

dariushghasemi commented 1 year ago
# Regular TSH levels
lm(eGFRw.log.Res ~ SNP * TSH + Sex + Age + PC1 + PC2 + PC3 + PC4 + PC5 + PC6 + PC7 + PC8 + PC9 + PC10)
dariushghasemi commented 1 year ago
dariushghasemi commented 1 year ago