GWAS-eQTL-Colocalization

GWAS-eQTL Colocalization Analysis Workflow

Zhang Lab@Columbia by Fang Li [2019-08-01]

1. The purpose of GWAS-eQTL intergration

GWAS locus that colocalized with eQTL is one of the primary and scalable signal for functional follow-up analyses.

2. Install R/RStudio and packages

3. Colocalization analysis using coloc

result <- coloc.abf(dataset1=list(pvalues=input$pval_nominal_gwas, type="cc", S=0.33, N=nrow(gwas)) dataset2=list(pvalues=input$pval_nominal_eqtl, type="quant", N=nrow(eqtl)), MAF=input$maf)

Comments: coloc.abf() function needs two named lists (gwas and eqtl) that contain p-values, the type of study(“cc” for case-control studies, “quant” for quantitative traits) and sample size(N). s= the proportion of samples are cases, when type=”cc”. It also needs the minor allele frequency.

A posterior probability of ≥75% is considered strong evidence of the eQTL-GWAS pair influencing both the expression and GWAS trait at a particular region.

4. Visualization using locuscomparer

Materials here are licensed as CC BY-NC-SA 4.0 Creative Commons License.