This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Inverse Normal Transformation Of A Quantitative Trait In Gwas

hello, I have a question, how do you inverse normally transform a quantitative trait for genetic association studies?

gwas association

2 answers

Here's a nice paper on Pubmed Central discussing issues surrounding inverse normal transforms. In general, the idea is to match the normalized rank of the trait to a quantile in a normal distribution. Have a look at equation 1 in the paper I linked to.

I think the paper mentioned by Devon Ryan worths to read.

To do INT(inverse-normal transformation), you can use the R code below:

qnorm((rank(x,na.last="keep")-0.5)/sum(!is.na(x)))

See the supplement of this paper - Yang et al. Nature 2012.

Log in to answer this question.