Removing SNPs from .bed file?
2
0
Entering edit mode
8.1 years ago
dam4l ▴ 200

I have a list of imputed SNPs in a binary file (.bed, .bim, .fam) and I would like to perform some QC before proceeding with further analysis. I need to remove a list of SNPs based on low MAF and poor imputation quality (I have this list). Is it possible to remove this list from the .bed file to create a new binary fileset that no longer contains these variants?

SNP • 3.8k views
ADD COMMENT
1
Entering edit mode
8.1 years ago
Joey ▴ 430

Use PLINK (either 1.07 or 1.90).

Look at removing subset of SNPs in this page: http://pngu.mgh.harvard.edu/~purcell/plink/dataman.shtml#exclude

If you have a text file (say snplist.txt) with SNP rsIDs (no headers) containing the list of SNPs that need to be excluded from the SNP data set (example.bed, example.bim, example.fam) use the following command (in PLINK 1.07)

plink --noweb --bfile example --exclude snplist.txt --make-bed --out newdata

This will make the new file in binary format .

ADD COMMENT

Login before adding your answer.

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