clump_data | R Documentation |
Uses PLINK clumping method, where SNPs in LD within a particular window will be pruned. The SNP with the lowest p-value is retained.
clump_data(
dat,
clump_kb = 10000,
clump_r2 = 0.001,
clump_p1 = 1,
clump_p2 = 1,
pop = "EUR",
bfile = NULL,
plink_bin = NULL
)
dat |
Output from |
clump_kb |
Clumping window, default is |
clump_r2 |
Clumping r2 cutoff. Note that this default value has recently changed from |
clump_p1 |
Clumping sig level for index SNPs, default is |
clump_p2 |
Clumping sig level for secondary SNPs, default is |
pop |
Super-population to use as reference panel. Default = |
bfile |
If this is provided then will use the API. Default = |
plink_bin |
If |
This function interacts with the OpenGWAS API, which houses LD reference panels for the 5 super-populations in the 1000 genomes reference panel. It includes only bi-allelic SNPs with MAF > 0.01, so it's quite possible that a variant you want to include in the clumping process will be absent. If it is absent, it will be automatically excluded from the results.
You can check if your variants are present in the LD reference panel using ieugwasr::ld_reflookup()
.
This function does put load on the OpenGWAS servers, which makes life more difficult for other users.
We have implemented a method and made available the LD reference panels to perform clumping locally, see ieugwasr::ld_clump()
and related vignettes for details.
Data frame
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.