How To Convert Lod Score To P- Value
1
0
Entering edit mode
10.4 years ago

I have a table of SNPs with their LOD scores from genome wide association mapping. I want to convert these LOD scores to P-value. but I don't know how. any suggestion ?

p-value • 9.0k views
ADD COMMENT
2
Entering edit mode
10.4 years ago
xb ▴ 420

Dale's conversion helps! You may try out a small piece of R code I wrote,

lodToPval <-
  function(x)
{
  pchisq(x*(2*log(10)),df=1,lower.tail=FALSE)/2
}

Or using Dale's spreadsheet, genepi.qimr.edu.au/general/daleN/ConvertingLODtoPvalue.XLS

The original paper, http://www.sciencedirect.com/science/article/pii/S0002929707626391

ADD COMMENT
0
Entering edit mode

Very helpful to provide both the answer and the citation to the Nyholt review.

ADD REPLY

Login before adding your answer.

Traffic: 2587 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