This is a test version of Biostars. For the public version, visit https://www.biostars.org.
GWAS dataset calculating MAF for European dataset

How does frequency of existing variant in the combined 1000 genome European data from Variant effector predicator website equate to MAF. I have a SNP data from GWAS data and need to find the MAF for each of the SNPs. Thank you

maf gwas

1 answer

Hi Victoria, can you please clarify the format of your data, currently? Per any given variant, MAF can be applied specifically to any population, i.e., MAF in the global population, MAF in the Irish population, MAF among sub-Saharan Arficans, et cetera.

Dear Kevin, I have a European dataset with SNP data and need to get the MAF for each SNP. I have a lot of data from a GWAM study. Headings are; CHR SNP BP ref_allele alt_allele sample_size case_proportion Thank you

Hi, in that case, you already have enough information to calculate the MAF in your own cohort of patients / samples. However, if you want the MAF for your variants from the large public databases, then you could use Ensembl VEP or ANNOVAR. Both of these will take some time to set up, though. There are other solutions, too.

As in;

If (AF < 0.5) then MAF = AF

if (AF > 0.5) then MAF = 1.0 - AF

More or less, yes! That is, this is your study-specific MAF.

Log in to answer this question.