Phenotype and Genotype
1
0
Entering edit mode
4.1 years ago

Hello:

I have genotyped some samples (n=500), for those samples I have cholesterol absorption markers (phenotypes). How can I link the genotype to the phenotype? Note: genotype has been performed using PMRA array. (My interest, is only to test specific SNPs of some selected genes)

Thanks,

SNP • 941 views
ADD COMMENT
1
Entering edit mode
4.1 years ago

Hello, you can perform a binary logistic regression, as follows:

glm(genotype ~ phenotype, data = data, family = logit(link = 'binomial'))

...or a linear regression:

lm(phenotype ~ genotype, data = data)

I trust that you are capable of researching further these methods and functions on your own. The code syntax that I have posted is for R Programming Language.

Kevin

ADD COMMENT
0
Entering edit mode

Dear Kevin,

Thank you for your reply. I have another question. We have used the command that you provided of linear regression, and this was the outcome:

![https://ibb.co/FYmk9wQ][1] My question now: How could I create a loop, to perform the command for many SNPs? The SNP can have three levels [AA, AB, BB]. In the model, we also want to adjust for the number of studies (N=5) and sex, also we want to include the gender as an independent. The program needs to go one column to the right in every new loop but keep the same variable (campesterol)?

Thank you in advance

ADD REPLY
0
Entering edit mode

I developed this package for this exact purpose: https://bioconductor.org/packages/devel/data/experiment/html/RegParallel.html

Or, you can choose to do it with your own code via a for loop, or, better, mclapply() / lapply()

ADD REPLY

Login before adding your answer.

Traffic: 2653 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6