How to Clump In Plink?
2
0
Entering edit mode
3.0 years ago
Thorerges ▴ 10

I am trying to find the set of independent SNPs for an all european GWAS - i.e clumping.

I haven't used PLINK before, but it seems the obvious tool to do this. The command primarily being:

plink --file mydata --clump mytest1.assoc

Just to be clear what file is what, is mydata here - the LD reference panel? Whereas mytest1.assoc is the actual summary stats file?

PLINK GWAS • 4.7k views
ADD COMMENT
0
Entering edit mode
3.0 years ago
Yong ▴ 10

The following is an example of script for clumping, you could adjust the parameters as needed:

plink --bfile  1000G_EUR \                                ### The LD reference panel
         --clump MetaGWAS.assoc \                         ### Your summary stats file
         --clump-p1 5e-6 \                                ### Significance threshold for index SNPs
         --clump-p2 0.05 \                                ### Secondary significance threshold for clumped SNPs
         --clump-r2 0.05 \                                ### LD threshold for clumping
        --out MetaGWAS_CAD_clumped_r0.05
ADD COMMENT
0
Entering edit mode
4 months ago
meggo • 0

Adding to this in case anyone else comes across it:

plink --bfile ref_panel \
    --clump your_sumstats \
    --clump-p1 5e-8 \
    --clump-p2 0.05 \
    --clump-r2 0.1 \
    --clump-kb 500 \
    --out output_file_name

In contrast to the above example:
p1: I've used the commonly accepted genome-wide significance threshold. You can use a less stringent threshold and then inspect and filter your clumped output accordingly.
r2: The default LD threshold for clumping is 0.5 but this is high. I tend to use 0.1 to be more conservative, the above 0.05 is even more conservative.
kb: This is missing above. This is the 'window' size, the genetic distance/radius that you are clumping within. The default 250kb is low. I would use at least 500kb but you often see 2Mb or 3Mb (i.e., setting the kb value to 2000 or 3000) to cover more extensive LD regions.

https://www.cog-genomics.org/plink/1.9/postproc

ADD COMMENT

Login before adding your answer.

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