I am trying to find the number of SNPs captured by each of these sequencing panel listed here: http://www.illumina.com/products/trusight-panels.html . Can someone please tell me how I can determine the number of SNPs captured by each of these targeted method?
Once you retrieved your panel in BED format, download the preferred version of the dbSNP catalogue (VCF or BED format) for the Human genome at ftp://ftp.ncbi.nih.gov/snp/organisms/
Finally you can exploit bedtools to "determine number of SNPs captured by each of these targeted method" :
Since a lot of the TruSight panels are designed for cancer, you might not be interested in all SNPs, but only cancer-related SNPs. If this is the case, you might want to use COSMIC instead:
Download the Illumina TruSight bed as Nicola mentions above.
(optional) A few of the TruSight panels cover non-coding regions as well.
If this is the case for your panel, you may want to also download
the non-coding COSMIC VCF, and merge the two together.
Run bedtools intersect with the COSMIC VCF in place of dbSNP above.
Since a lot of the TruSight panels are designed for cancer, you might not be interested in all SNPs, but only cancer-related SNPs. If this is the case, you might want to use COSMIC instead:
bedtools intersect
with the COSMIC VCF in place of dbSNP above.Correct, or refer to the ClinVar dataset from NCBI.