This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Whats the point of genotype pruning before imputation?

Hey guys,

The point of imputation is to predict un-typed SNPs using D' or r2 values. However, it is standard to remove all SNPs in LD before imputation e.g. with plink command --indep-pairwise. May i ask what's the purpose of removing actually typed SNP's and then trying to "predict them back"? I'm for sure missing something, but still, curiosity is the point of my job heh

edit: I'm following Joni Coleman tutorial (he uses --indep-pairwise to prune and later remove these snp)

imputation plink --indep-pariwise r2

Could you provide a link to that protocl:

standard to remove all SNPs in LD before imputation

1 answer

They are not pruning before imputation, pruning is a step before doing other QC steps, to calculate IBD and remove related individuals, or calculate PCs to remove outlier individuals based on ethnicity. As the final step of QC, there will be plink command something like:

plink --bfile original \
--remove individualsRelated individualsPCoutlier... individualsCallRate ... \
--exclude SNPsHWE... SNPsOtherQC, ... \
--recode oxford \
--out originalQC

Log in to answer this question.