I have a dataset, abbreviated here:
SNP chr BP log10 PPA
rs10068 17 56555 1.16303 0.030
rs10032 17 56561 26.364 0.975
rs10354 17 34951 4.3212 0.626
rs10043 17 20491 0.00097 0.006
rs10457 17 69572 -0.38403 0.014
rs10465 17 69872 8.19547 0.927
where PPA is the posterior probability of association. As I have some high log10 values (>6), I would like to determine credible intervals around these regions, to determine exactly how large or small they are with confidence.
To do this, I would first like to identify SNPs with a log10 > 6, which is simple enough using subset.
newdata <- subset(data, log10 > 6)
However, I would also like to include in this subset, SNPs that are physically near these lead SNPs, using BP 500 +/- the BP of the lead SNPs (with log10>6). It is here where I am unsure the best way to proceed. Is this something I can work into subset or should I first identify these lead SNPs in my original data, and then subset from there?
Once I isolate these regions, I can move forward.
Any suggestions are appreciated!