snpgdsLDpruning | R Documentation |
Recursively removes SNPs within a sliding window
snpgdsLDpruning(gdsobj, sample.id=NULL, snp.id=NULL, autosome.only=TRUE,
remove.monosnp=TRUE, maf=0.005, missing.rate=0.05,
method=c("composite", "r", "dprime", "corr"), slide.max.bp=500000L,
slide.max.n=NA, ld.threshold=0.2,
start.pos=c("random.f500", "random", "first", "last"),
num.thread=1L, autosave=NULL, verbose=TRUE)
gdsobj |
an object of class |
sample.id |
a vector of sample id specifying selected samples; if NULL, all samples are used |
snp.id |
a vector of snp id specifying selected SNPs; if NULL, all SNPs are used |
autosome.only |
if |
remove.monosnp |
if TRUE, remove monomorphic SNPs |
maf |
to use the SNPs with ">= maf" only; if NaN, no MAF threshold |
missing.rate |
to use the SNPs with "<= missing.rate" only; if NaN, no missing threshold |
method |
"composite", "r", "dprime", "corr", see details |
slide.max.bp |
the maximum basepairs in the sliding window |
slide.max.n |
the maximum number of SNPs in the sliding window |
ld.threshold |
the LD threshold |
start.pos |
"random.f500", a starting postion randomly selected from the first 500 markers (by default); "random": a random starting position; "first": start from the first position; "last": start from the last position. "random.f500" is applicable for >= v1.37.2 |
num.thread |
the number of (CPU) cores used; if |
autosave |
NULL or a file name for autosaving a single R object
(saving via |
verbose |
if TRUE, show information |
The minor allele frequency and missing rate for each SNP passed in
snp.id
are calculated over all the samples in sample.id
.
Four methods can be used to calculate linkage disequilibrium values:
"composite" for LD composite measure, "r" for R coefficient (by EM algorithm
assuming HWE, it could be negative), "dprime" for D', and "corr" for
correlation coefficient. The method "corr" is equivalent to "composite",
when SNP genotypes are coded as: 0 – BB, 1 – AB, 2 – AA. The argument
ld.threshold
is the absolute value of measurement.
It is useful to generate a pruned subset of SNPs that are in approximate
linkage equilibrium with each other. The function snpgdsLDpruning
recursively removes SNPs within a sliding window based on the pairwise
genotypic correlation. SNP pruning is conducted chromosome by chromosome,
since SNPs in a chromosome can be considered to be independent with the other
chromosomes.
The pruning algorithm on a chromosome is described as follows (n is the total number of SNPs on that chromosome):
1) Randomly select a starting position i (start.pos="random"
),
i=1 if start.pos="first"
, or i=last if start.pos="last"
; and let
the current SNP set S={ i };
2) For each right position j from i+1 to n: if any LD between j and k is
greater than ld.threshold
, where k belongs to S, and both of j and k
are in the sliding window, then skip j; otherwise, let S be S + { j };
3) For each left position j from i-1 to 1: if any LD between j and k is
greater than ld.threshold
, where k belongs to S, and both of j and k
are in the sliding window, then skip j; otherwise, let S be S + { j };
4) Output S, the final selection of SNPs.
Return a list of SNP IDs stratified by chromosomes.
Xiuwen Zheng
Weir B: Inferences about linkage disequilibrium. Biometrics 1979; 35: 235-254.
Weir B: Genetic Data Analysis II. Sunderland, MA: Sinauer Associates, 1996.
Weir BS, Cockerham CC: Complete characterization of disequilibrium at two loci; in Feldman MW (ed): Mathematical Evolutionary Theory. Princeton, NJ: Princeton University Press, 1989.
snpgdsLDMat
, snpgdsLDpair
# open an example dataset (HapMap)
genofile <- snpgdsOpen(snpgdsExampleFileName())
set.seed(1000)
snpset <- snpgdsLDpruning(genofile)
str(snpset)
names(snpset)
# [1] "chr1" "chr2" "chr3" "chr4" "chr5" "chr6" "chr7" "chr8" "chr9"
# [10] "chr10" "chr11" "chr12" "chr13" "chr14" "chr15" "chr16" "chr17" "chr18"
# ......
# get SNP ids
snp.id <- unlist(unname(snpset))
# close the genotype file
snpgdsClose(genofile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.