any database for 1000G MAF available?
1
1
Entering edit mode
9.7 years ago
J.F.Jiang ▴ 910

Hi all,

As a useful tool, the NCBI website offers us great resource to discover the information, e.g. SNPs.

For example, this website can provide all infromation, MAF from 1000G datasets for all populations.

I can download the raw vcf files from the ftp, and using vcftools or plink to calculate all the required MAFs for all population, however, is there any public data that can be downloaded?

If anyone knows, plz let me know.

Best

1000G MAF SNP • 3.8k views
ADD COMMENT
2
Entering edit mode
9.7 years ago
Leandro Lima ▴ 970

Hi J.F.Jiang.

You can download the vcf files here.

your use Ensembl Biomart API to get the information using web or R:

For example, using R:

# To install biomaRt
# source("http://bioconductor.org/biocLite.R")
# biocLite("biomaRt")

library(biomaRt)

snpsMart = useMart("snp", dataset = "hsapiens_snp")

# listAttributes(snpsMart)
snps_attributes = c('refsnp_id', 'chr_name', 'chrom_start', 'minor_allele_freq')

# listFilters(snpsMart)
snps_filters = c('snp_filter')

snps_values = c('rs185293715', 'rs61838549', 'rs28782254') # for example

snps_results = getBM(attributes = snps_attributes, filters = snps_filters, values = snps_values, mart = snpsMart)
ADD COMMENT
0
Entering edit mode

Hi Leandro Lima

Thanks for your reply,

I have checked the ensemble variation vcf file before and found that it only provides global MAF based on some larger population sets, AFR, ASN, AMR, EUR, which is the same as the resource data of ANNOVAR. My idea is to obtain some more specific population category, such as CHB CHS CEU ...;

The sencond R portal, however, did not provide specific population information for MAF, but providing the global MAF based on all 1000G samples.

I have downloaded the 1000G vcf files and calculated with plink to obtain the MAFs though it is time consuming.

Thanks!

ADD REPLY

Login before adding your answer.

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