Datasets:

uuid
stringlengths
4
8
template_uuid
stringclasses
40 values
question
stringlengths
13
193
answer
stringlengths
29
2.2k
benchmark_query
stringlengths
133
622
execution_results
stringlengths
2
1.14M
query_type
stringclasses
2 values
sql_category
stringclasses
26 values
bio_category
stringclasses
14 values
Q2.559
Q2
What is the allele frequency of the SNP rs11624494 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11624494 has an effect allele T frequency of 0.2745 and non-effect allele C frequency of 0.7255.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11624494" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2060958', 'SNP': 'rs11624494', 'effect_allele': 'T', 'effect_allele_frequency': 0.2745, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.7255}]
general
Calculate, Select
Allele Frequency
Q2.181
Q2
What is the allele frequency of the SNP rs11167726 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11167726 has an effect allele T frequency of 0.1513 and non-effect allele G frequency of 0.8487.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11167726" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_675766', 'SNP': 'rs11167726', 'effect_allele': 'T', 'effect_allele_frequency': 0.1513, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8487}]
general
Calculate, Select
Allele Frequency
Q2.396
Q2
What is the allele frequency of the SNP rs1399066 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs1399066 has an effect allele A frequency of 0.1927 and non-effect allele G frequency of 0.8073.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs1399066" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1463962', 'SNP': 'rs1399066', 'effect_allele': 'A', 'effect_allele_frequency': 0.1927, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8073}]
general
Calculate, Select
Allele Frequency
Q2.584
Q2
What is the allele frequency of the SNP rs146995631 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs146995631 has an effect allele A frequency of 0.0143 and non-effect allele G frequency of 0.9857.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs146995631" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2198472', 'SNP': 'rs146995631', 'effect_allele': 'A', 'effect_allele_frequency': 0.0143, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9857}]
general
Calculate, Select
Allele Frequency
Q2.995
Q2
What is the allele frequency of the SNP rs420777 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs420777 has an effect allele A frequency of 0.1616 and non-effect allele G frequency of 0.8384.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs420777" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3841247', 'SNP': 'rs420777', 'effect_allele': 'A', 'effect_allele_frequency': 0.1616, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8384}]
general
Calculate, Select
Allele Frequency
Q2.1707
Q2
What is the allele frequency of the SNP rs77852630 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs77852630 has an effect allele A frequency of 0.0096 and non-effect allele G frequency of 0.9904.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs77852630" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6673793', 'SNP': 'rs77852630', 'effect_allele': 'A', 'effect_allele_frequency': 0.0096, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9904}]
general
Calculate, Select
Allele Frequency
Q2.1285
Q2
What is the allele frequency of the SNP rs2241238 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2241238 has an effect allele T frequency of 0.3129 and non-effect allele C frequency of 0.6871.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2241238" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5037906', 'SNP': 'rs2241238', 'effect_allele': 'T', 'effect_allele_frequency': 0.3129, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.6871}]
general
Calculate, Select
Allele Frequency
Q2.1645
Q2
What is the allele frequency of the SNP rs75029660 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs75029660 has an effect allele A frequency of 0.0561 and non-effect allele T frequency of 0.9439.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs75029660" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6401115', 'SNP': 'rs75029660', 'effect_allele': 'A', 'effect_allele_frequency': 0.0561, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.9439}]
general
Calculate, Select
Allele Frequency
Q2.886
Q2
What is the allele frequency of the SNP rs10776966 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs10776966 has an effect allele G frequency of 0.2890 and non-effect allele T frequency of 0.7110.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs10776966" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3414859', 'SNP': 'rs10776966', 'effect_allele': 'G', 'effect_allele_frequency': 0.289, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7110000000000001}]
general
Calculate, Select
Allele Frequency
Q2.827
Q2
What is the allele frequency of the SNP rs13050662 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs13050662 has an effect allele A frequency of 0.3857 and non-effect allele G frequency of 0.6143.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs13050662" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3199767', 'SNP': 'rs13050662', 'effect_allele': 'A', 'effect_allele_frequency': 0.3857, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.6143000000000001}]
general
Calculate, Select
Allele Frequency
Q2.1660
Q2
What is the allele frequency of the SNP rs7239055 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs7239055 has an effect allele C frequency of 0.2652 and non-effect allele T frequency of 0.7348.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs7239055" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6446143', 'SNP': 'rs7239055', 'effect_allele': 'C', 'effect_allele_frequency': 0.2652, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7348}]
general
Calculate, Select
Allele Frequency
Q2.972
Q2
What is the allele frequency of the SNP rs148000091 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs148000091 has an effect allele T frequency of 0.0201 and non-effect allele C frequency of 0.9799.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs148000091" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3729215', 'SNP': 'rs148000091', 'effect_allele': 'T', 'effect_allele_frequency': 0.0201, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9799}]
general
Calculate, Select
Allele Frequency
Q2.1049
Q2
What is the allele frequency of the SNP rs2366491 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2366491 has an effect allele T frequency of 0.1430 and non-effect allele C frequency of 0.8570.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2366491" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4060692', 'SNP': 'rs2366491', 'effect_allele': 'T', 'effect_allele_frequency': 0.143, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.857}]
general
Calculate, Select
Allele Frequency
Q2.671
Q2
What is the allele frequency of the SNP rs11942114 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11942114 has an effect allele G frequency of 0.4008 and non-effect allele C frequency of 0.5992.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11942114" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2562656', 'SNP': 'rs11942114', 'effect_allele': 'G', 'effect_allele_frequency': 0.4008, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.5992}]
general
Calculate, Select
Allele Frequency
Q2.145
Q2
What is the allele frequency of the SNP rs7430156 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs7430156 has an effect allele G frequency of 0.4078 and non-effect allele A frequency of 0.5922.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs7430156" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_518988', 'SNP': 'rs7430156', 'effect_allele': 'G', 'effect_allele_frequency': 0.4078, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.5922000000000001}]
general
Calculate, Select
Allele Frequency
Q2.1518
Q2
What is the allele frequency of the SNP rs359044 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs359044 has an effect allele C frequency of 0.2282 and non-effect allele T frequency of 0.7718.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs359044" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5859854', 'SNP': 'rs359044', 'effect_allele': 'C', 'effect_allele_frequency': 0.2281999999999999, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7718}]
general
Calculate, Select
Allele Frequency
Q2.1999
Q2
What is the allele frequency of the SNP rs2073379 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2073379 has an effect allele T frequency of 0.2120 and non-effect allele C frequency of 0.7880.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2073379" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7769596', 'SNP': 'rs2073379', 'effect_allele': 'T', 'effect_allele_frequency': 0.212, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.788}]
general
Calculate, Select
Allele Frequency
Q2.871
Q2
What is the allele frequency of the SNP rs4726625 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs4726625 has an effect allele C frequency of 0.0958 and non-effect allele T frequency of 0.9042.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs4726625" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3373299', 'SNP': 'rs4726625', 'effect_allele': 'C', 'effect_allele_frequency': 0.0958, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.9042}]
general
Calculate, Select
Allele Frequency
Q2.427
Q2
What is the allele frequency of the SNP rs16861748 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs16861748 has an effect allele A frequency of 0.0197 and non-effect allele C frequency of 0.9803.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs16861748" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1533755', 'SNP': 'rs16861748', 'effect_allele': 'A', 'effect_allele_frequency': 0.0197, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9803}]
general
Calculate, Select
Allele Frequency
Q2.643
Q2
What is the allele frequency of the SNP rs2755166 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2755166 has an effect allele A frequency of 0.0205 and non-effect allele G frequency of 0.9795.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2755166" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2432386', 'SNP': 'rs2755166', 'effect_allele': 'A', 'effect_allele_frequency': 0.0205, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9795}]
general
Calculate, Select
Allele Frequency
Q2.1408
Q2
What is the allele frequency of the SNP rs67227234 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs67227234 has an effect allele G frequency of 0.2850 and non-effect allele A frequency of 0.7150.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs67227234" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5449670', 'SNP': 'rs67227234', 'effect_allele': 'G', 'effect_allele_frequency': 0.285, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.7150000000000001}]
general
Calculate, Select
Allele Frequency
Q2.806
Q2
What is the allele frequency of the SNP rs2832876 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2832876 has an effect allele G frequency of 0.4129 and non-effect allele A frequency of 0.5871.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2832876" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3101292', 'SNP': 'rs2832876', 'effect_allele': 'G', 'effect_allele_frequency': 0.4129, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.5871}]
general
Calculate, Select
Allele Frequency
Q2.1067
Q2
What is the allele frequency of the SNP rs1376380 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs1376380 has an effect allele T frequency of 0.1453 and non-effect allele C frequency of 0.8547.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs1376380" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4119511', 'SNP': 'rs1376380', 'effect_allele': 'T', 'effect_allele_frequency': 0.1453, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.8547}]
general
Calculate, Select
Allele Frequency
Q2.622
Q2
What is the allele frequency of the SNP rs10503765 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs10503765 has an effect allele C frequency of 0.1434 and non-effect allele T frequency of 0.8566.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs10503765" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2333451', 'SNP': 'rs10503765', 'effect_allele': 'C', 'effect_allele_frequency': 0.1433999999999999, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.8566000000000001}]
general
Calculate, Select
Allele Frequency
Q2.298
Q2
What is the allele frequency of the SNP rs4993000 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs4993000 has an effect allele T frequency of 0.3284 and non-effect allele C frequency of 0.6716.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs4993000" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1113438', 'SNP': 'rs4993000', 'effect_allele': 'T', 'effect_allele_frequency': 0.3284, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.6716}]
general
Calculate, Select
Allele Frequency
Q2.912
Q2
What is the allele frequency of the SNP rs112574908 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs112574908 has an effect allele A frequency of 0.3186 and non-effect allele C frequency of 0.6814.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs112574908" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3528371', 'SNP': 'rs112574908', 'effect_allele': 'A', 'effect_allele_frequency': 0.3186, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.6814}]
general
Calculate, Select
Allele Frequency
Q2.917
Q2
What is the allele frequency of the SNP rs2358911 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2358911 has an effect allele G frequency of 0.1670 and non-effect allele A frequency of 0.8330.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2358911" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3540438', 'SNP': 'rs2358911', 'effect_allele': 'G', 'effect_allele_frequency': 0.167, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.833}]
general
Calculate, Select
Allele Frequency
Q2.1903
Q2
What is the allele frequency of the SNP rs11028149 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11028149 has an effect allele A frequency of 0.0691 and non-effect allele G frequency of 0.9309.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11028149" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7405572', 'SNP': 'rs11028149', 'effect_allele': 'A', 'effect_allele_frequency': 0.0691, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9309000000000001}]
general
Calculate, Select
Allele Frequency
Q2.91
Q2
What is the allele frequency of the SNP rs115365324 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs115365324 has an effect allele G frequency of 0.0244 and non-effect allele A frequency of 0.9756.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs115365324" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_348744', 'SNP': 'rs115365324', 'effect_allele': 'G', 'effect_allele_frequency': 0.0243999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.9756000000000001}]
general
Calculate, Select
Allele Frequency
Q2.42
Q2
What is the allele frequency of the SNP rs2599415 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2599415 has an effect allele G frequency of 0.1602 and non-effect allele A frequency of 0.8398.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2599415" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_134047', 'SNP': 'rs2599415', 'effect_allele': 'G', 'effect_allele_frequency': 0.1602, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.8398}]
general
Calculate, Select
Allele Frequency
Q2.1803
Q2
What is the allele frequency of the SNP rs117940272 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs117940272 has an effect allele G frequency of 0.0364 and non-effect allele A frequency of 0.9636.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs117940272" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7009504', 'SNP': 'rs117940272', 'effect_allele': 'G', 'effect_allele_frequency': 0.0363999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.9636000000000001}]
general
Calculate, Select
Allele Frequency
Q2.1934
Q2
What is the allele frequency of the SNP rs1381823 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs1381823 has an effect allele G frequency of 0.2396 and non-effect allele A frequency of 0.7604.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs1381823" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7534324', 'SNP': 'rs1381823', 'effect_allele': 'G', 'effect_allele_frequency': 0.2396, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.7604}]
general
Calculate, Select
Allele Frequency
Q2.134
Q2
What is the allele frequency of the SNP rs76299937 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs76299937 has an effect allele T frequency of 0.0578 and non-effect allele C frequency of 0.9422.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs76299937" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_482389', 'SNP': 'rs76299937', 'effect_allele': 'T', 'effect_allele_frequency': 0.0578, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9422}]
general
Calculate, Select
Allele Frequency
Q2.1566
Q2
What is the allele frequency of the SNP rs113720797 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs113720797 has an effect allele A frequency of 0.0276 and non-effect allele T frequency of 0.9724.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs113720797" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6045142', 'SNP': 'rs113720797', 'effect_allele': 'A', 'effect_allele_frequency': 0.0276, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.9724}]
general
Calculate, Select
Allele Frequency
Q2.977
Q2
What is the allele frequency of the SNP rs706422 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs706422 has an effect allele T frequency of 0.4204 and non-effect allele C frequency of 0.5796.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs706422" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3771252', 'SNP': 'rs706422', 'effect_allele': 'T', 'effect_allele_frequency': 0.4204, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.5796}]
general
Calculate, Select
Allele Frequency
Q2.1070
Q2
What is the allele frequency of the SNP rs2122425 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2122425 has an effect allele T frequency of 0.4736 and non-effect allele C frequency of 0.5264.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2122425" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4124433', 'SNP': 'rs2122425', 'effect_allele': 'T', 'effect_allele_frequency': 0.4736, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.5264}]
general
Calculate, Select
Allele Frequency
Q2.1856
Q2
What is the allele frequency of the SNP rs366931 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs366931 has an effect allele G frequency of 0.2186 and non-effect allele A frequency of 0.7814.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs366931" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7222556', 'SNP': 'rs366931', 'effect_allele': 'G', 'effect_allele_frequency': 0.2186, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.7814}]
general
Calculate, Select
Allele Frequency
Q2.1346
Q2
What is the allele frequency of the SNP rs185536336 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs185536336 has an effect allele T frequency of 0.0124 and non-effect allele C frequency of 0.9876.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs185536336" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5218229', 'SNP': 'rs185536336', 'effect_allele': 'T', 'effect_allele_frequency': 0.0124, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9876}]
general
Calculate, Select
Allele Frequency
Q2.1831
Q2
What is the allele frequency of the SNP rs1646232 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs1646232 has an effect allele T frequency of 0.0292 and non-effect allele C frequency of 0.9708.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs1646232" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7109261', 'SNP': 'rs1646232', 'effect_allele': 'T', 'effect_allele_frequency': 0.0292, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9708}]
general
Calculate, Select
Allele Frequency
Q2.167
Q2
What is the allele frequency of the SNP rs2188952 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2188952 has an effect allele T frequency of 0.3125 and non-effect allele G frequency of 0.6875.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2188952" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_628828', 'SNP': 'rs2188952', 'effect_allele': 'T', 'effect_allele_frequency': 0.3125, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.6875}]
general
Calculate, Select
Allele Frequency
Q2.731
Q2
What is the allele frequency of the SNP rs138738747 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs138738747 has an effect allele T frequency of 0.0107 and non-effect allele C frequency of 0.9893.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs138738747" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2790076', 'SNP': 'rs138738747', 'effect_allele': 'T', 'effect_allele_frequency': 0.0107, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9893}]
general
Calculate, Select
Allele Frequency
Q2.294
Q2
What is the allele frequency of the SNP rs471005 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs471005 has an effect allele A frequency of 0.0850 and non-effect allele G frequency of 0.9150.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs471005" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1103129', 'SNP': 'rs471005', 'effect_allele': 'A', 'effect_allele_frequency': 0.085, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.915}]
general
Calculate, Select
Allele Frequency
Q2.1142
Q2
What is the allele frequency of the SNP rs309272 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs309272 has an effect allele T frequency of 0.3311 and non-effect allele C frequency of 0.6689.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs309272" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4405077', 'SNP': 'rs309272', 'effect_allele': 'T', 'effect_allele_frequency': 0.3311, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.6689}]
general
Calculate, Select
Allele Frequency
Q2.1536
Q2
What is the allele frequency of the SNP rs62222869 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs62222869 has an effect allele C frequency of 0.2446 and non-effect allele T frequency of 0.7554.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs62222869" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5919349', 'SNP': 'rs62222869', 'effect_allele': 'C', 'effect_allele_frequency': 0.2446, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7554}]
general
Calculate, Select
Allele Frequency
Q2.1897
Q2
What is the allele frequency of the SNP rs7268250 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs7268250 has an effect allele G frequency of 0.1547 and non-effect allele A frequency of 0.8453.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs7268250" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7385374', 'SNP': 'rs7268250', 'effect_allele': 'G', 'effect_allele_frequency': 0.1546999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.8453000000000002}]
general
Calculate, Select
Allele Frequency
Q2.1006
Q2
What is the allele frequency of the SNP rs12440088 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs12440088 has an effect allele A frequency of 0.1022 and non-effect allele G frequency of 0.8978.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs12440088" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3889642', 'SNP': 'rs12440088', 'effect_allele': 'A', 'effect_allele_frequency': 0.1022, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8978}]
general
Calculate, Select
Allele Frequency
Q2.1421
Q2
What is the allele frequency of the SNP rs8103053 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs8103053 has an effect allele G frequency of 0.1053 and non-effect allele C frequency of 0.8947.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs8103053" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5503248', 'SNP': 'rs8103053', 'effect_allele': 'G', 'effect_allele_frequency': 0.1052999999999999, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.8947}]
general
Calculate, Select
Allele Frequency
Q2.785
Q2
What is the allele frequency of the SNP rs2396464 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2396464 has an effect allele A frequency of 0.1591 and non-effect allele G frequency of 0.8409.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2396464" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3018374', 'SNP': 'rs2396464', 'effect_allele': 'A', 'effect_allele_frequency': 0.1591, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8409}]
general
Calculate, Select
Allele Frequency
Q2.846
Q2
What is the allele frequency of the SNP rs3814210 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs3814210 has an effect allele C frequency of 0.3810 and non-effect allele T frequency of 0.6190.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs3814210" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3269967', 'SNP': 'rs3814210', 'effect_allele': 'C', 'effect_allele_frequency': 0.381, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.619}]
general
Calculate, Select
Allele Frequency
Q2.352
Q2
What is the allele frequency of the SNP rs74183260 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs74183260 has an effect allele A frequency of 0.0461 and non-effect allele G frequency of 0.9539.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs74183260" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1279738', 'SNP': 'rs74183260', 'effect_allele': 'A', 'effect_allele_frequency': 0.0461, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9539}]
general
Calculate, Select
Allele Frequency
Q2.1945
Q2
What is the allele frequency of the SNP rs9667240 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs9667240 has an effect allele C frequency of 0.1894 and non-effect allele A frequency of 0.8106.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs9667240" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7583446', 'SNP': 'rs9667240', 'effect_allele': 'C', 'effect_allele_frequency': 0.1894, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.8106}]
general
Calculate, Select
Allele Frequency
Q2.577
Q2
What is the allele frequency of the SNP rs11000746 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11000746 has an effect allele T frequency of 0.3682 and non-effect allele C frequency of 0.6318.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11000746" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2147412', 'SNP': 'rs11000746', 'effect_allele': 'T', 'effect_allele_frequency': 0.3682, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.6317999999999999}]
general
Calculate, Select
Allele Frequency
Q2.1923
Q2
What is the allele frequency of the SNP rs72640512 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs72640512 has an effect allele A frequency of 0.1696 and non-effect allele G frequency of 0.8304.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs72640512" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7470361', 'SNP': 'rs72640512', 'effect_allele': 'A', 'effect_allele_frequency': 0.1696, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8304}]
general
Calculate, Select
Allele Frequency
Q2.1888
Q2
What is the allele frequency of the SNP rs17469353 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs17469353 has an effect allele A frequency of 0.0148 and non-effect allele G frequency of 0.9852.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs17469353" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7329094', 'SNP': 'rs17469353', 'effect_allele': 'A', 'effect_allele_frequency': 0.0148, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9852}]
general
Calculate, Select
Allele Frequency
Q2.1470
Q2
What is the allele frequency of the SNP rs167278 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs167278 has an effect allele C frequency of 0.3765 and non-effect allele T frequency of 0.6235.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs167278" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5667532', 'SNP': 'rs167278', 'effect_allele': 'C', 'effect_allele_frequency': 0.3764999999999999, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.6235000000000002}]
general
Calculate, Select
Allele Frequency
Q2.1818
Q2
What is the allele frequency of the SNP rs181115158 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs181115158 has an effect allele A frequency of 0.0216 and non-effect allele G frequency of 0.9784.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs181115158" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7065372', 'SNP': 'rs181115158', 'effect_allele': 'A', 'effect_allele_frequency': 0.0216, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9784}]
general
Calculate, Select
Allele Frequency
Q2.1317
Q2
What is the allele frequency of the SNP rs6539363 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs6539363 has an effect allele G frequency of 0.4846 and non-effect allele A frequency of 0.5154.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs6539363" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5130951', 'SNP': 'rs6539363', 'effect_allele': 'G', 'effect_allele_frequency': 0.4846, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.5154000000000001}]
general
Calculate, Select
Allele Frequency
Q2.1501
Q2
What is the allele frequency of the SNP rs61794544 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs61794544 has an effect allele T frequency of 0.0939 and non-effect allele C frequency of 0.9061.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs61794544" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5769082', 'SNP': 'rs61794544', 'effect_allele': 'T', 'effect_allele_frequency': 0.0939, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9061}]
general
Calculate, Select
Allele Frequency
Q2.464
Q2
What is the allele frequency of the SNP rs6931208 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs6931208 has an effect allele A frequency of 0.1947 and non-effect allele G frequency of 0.8053.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs6931208" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1650626', 'SNP': 'rs6931208', 'effect_allele': 'A', 'effect_allele_frequency': 0.1947, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8053}]
general
Calculate, Select
Allele Frequency
Q2.381
Q2
What is the allele frequency of the SNP rs6933000 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs6933000 has an effect allele T frequency of 0.4060 and non-effect allele C frequency of 0.5940.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs6933000" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1397530', 'SNP': 'rs6933000', 'effect_allele': 'T', 'effect_allele_frequency': 0.406, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.594}]
general
Calculate, Select
Allele Frequency
Q2.1344
Q2
What is the allele frequency of the SNP rs35166058 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs35166058 has an effect allele A frequency of 0.1956 and non-effect allele G frequency of 0.8044.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs35166058" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5208028', 'SNP': 'rs35166058', 'effect_allele': 'A', 'effect_allele_frequency': 0.1956, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8044}]
general
Calculate, Select
Allele Frequency
Q2.337
Q2
What is the allele frequency of the SNP rs9839707 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs9839707 has an effect allele T frequency of 0.0523 and non-effect allele C frequency of 0.9477.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs9839707" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1229778', 'SNP': 'rs9839707', 'effect_allele': 'T', 'effect_allele_frequency': 0.0523, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9477}]
general
Calculate, Select
Allele Frequency
Q2.1284
Q2
What is the allele frequency of the SNP rs3968756 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs3968756 has an effect allele A frequency of 0.3104 and non-effect allele G frequency of 0.6896.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs3968756" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5031555', 'SNP': 'rs3968756', 'effect_allele': 'A', 'effect_allele_frequency': 0.3104, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.6896}]
general
Calculate, Select
Allele Frequency
Q2.1762
Q2
What is the allele frequency of the SNP rs9550161 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs9550161 has an effect allele A frequency of 0.1958 and non-effect allele G frequency of 0.8042.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs9550161" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6877462', 'SNP': 'rs9550161', 'effect_allele': 'A', 'effect_allele_frequency': 0.1958, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.8042}]
general
Calculate, Select
Allele Frequency
Q2.1459
Q2
What is the allele frequency of the SNP rs12518387 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs12518387 has an effect allele T frequency of 0.3388 and non-effect allele C frequency of 0.6612.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs12518387" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5632449', 'SNP': 'rs12518387', 'effect_allele': 'T', 'effect_allele_frequency': 0.3388, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.6612}]
general
Calculate, Select
Allele Frequency
Q2.823
Q2
What is the allele frequency of the SNP rs7595597 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs7595597 has an effect allele T frequency of 0.1396 and non-effect allele C frequency of 0.8604.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs7595597" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3180688', 'SNP': 'rs7595597', 'effect_allele': 'T', 'effect_allele_frequency': 0.1396, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.8604}]
general
Calculate, Select
Allele Frequency
Q2.1114
Q2
What is the allele frequency of the SNP rs145837046 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs145837046 has an effect allele A frequency of 0.0461 and non-effect allele G frequency of 0.9539.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs145837046" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4281215', 'SNP': 'rs145837046', 'effect_allele': 'A', 'effect_allele_frequency': 0.0461, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9539}]
general
Calculate, Select
Allele Frequency
Q2.1524
Q2
What is the allele frequency of the SNP rs9375548 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs9375548 has an effect allele T frequency of 0.0686 and non-effect allele C frequency of 0.9314.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs9375548" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5875397', 'SNP': 'rs9375548', 'effect_allele': 'T', 'effect_allele_frequency': 0.0686, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.9314}]
general
Calculate, Select
Allele Frequency
Q2.1941
Q2
What is the allele frequency of the SNP rs4743624 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs4743624 has an effect allele C frequency of 0.2658 and non-effect allele T frequency of 0.7342.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs4743624" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7566779', 'SNP': 'rs4743624', 'effect_allele': 'C', 'effect_allele_frequency': 0.2658, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7342}]
general
Calculate, Select
Allele Frequency
Q2.1616
Q2
What is the allele frequency of the SNP rs12600245 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs12600245 has an effect allele C frequency of 0.2073 and non-effect allele T frequency of 0.7927.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs12600245" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6284605', 'SNP': 'rs12600245', 'effect_allele': 'C', 'effect_allele_frequency': 0.2073, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7927}]
general
Calculate, Select
Allele Frequency
Q2.1898
Q2
What is the allele frequency of the SNP rs72879636 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs72879636 has an effect allele C frequency of 0.2020 and non-effect allele A frequency of 0.7980.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs72879636" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7386296', 'SNP': 'rs72879636', 'effect_allele': 'C', 'effect_allele_frequency': 0.2019999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.798}]
general
Calculate, Select
Allele Frequency
Q2.918
Q2
What is the allele frequency of the SNP rs7072274 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs7072274 has an effect allele C frequency of 0.1694 and non-effect allele T frequency of 0.8306.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs7072274" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3547484', 'SNP': 'rs7072274', 'effect_allele': 'C', 'effect_allele_frequency': 0.1694, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.8306}]
general
Calculate, Select
Allele Frequency
Q2.1930
Q2
What is the allele frequency of the SNP rs76866243 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs76866243 has an effect allele C frequency of 0.0284 and non-effect allele T frequency of 0.9716.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs76866243" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7505801', 'SNP': 'rs76866243', 'effect_allele': 'C', 'effect_allele_frequency': 0.0283999999999999, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.9716000000000001}]
general
Calculate, Select
Allele Frequency
Q2.1126
Q2
What is the allele frequency of the SNP rs112671550 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs112671550 has an effect allele A frequency of 0.0276 and non-effect allele G frequency of 0.9724.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs112671550" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4320196', 'SNP': 'rs112671550', 'effect_allele': 'A', 'effect_allele_frequency': 0.0276, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9724}]
general
Calculate, Select
Allele Frequency
Q2.332
Q2
What is the allele frequency of the SNP rs6903219 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs6903219 has an effect allele A frequency of 0.4729 and non-effect allele G frequency of 0.5271.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs6903219" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1211540', 'SNP': 'rs6903219', 'effect_allele': 'A', 'effect_allele_frequency': 0.4729, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.5271}]
general
Calculate, Select
Allele Frequency
Q2.1036
Q2
What is the allele frequency of the SNP rs10926507 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs10926507 has an effect allele A frequency of 0.3113 and non-effect allele G frequency of 0.6887.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs10926507" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4011432', 'SNP': 'rs10926507', 'effect_allele': 'A', 'effect_allele_frequency': 0.3113, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.6887}]
general
Calculate, Select
Allele Frequency
Q2.322
Q2
What is the allele frequency of the SNP rs6879536 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs6879536 has an effect allele G frequency of 0.4106 and non-effect allele A frequency of 0.5894.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs6879536" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1181156', 'SNP': 'rs6879536', 'effect_allele': 'G', 'effect_allele_frequency': 0.4105999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.5894000000000001}]
general
Calculate, Select
Allele Frequency
Q2.1531
Q2
What is the allele frequency of the SNP rs77489732 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs77489732 has an effect allele C frequency of 0.0242 and non-effect allele G frequency of 0.9758.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs77489732" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5902793', 'SNP': 'rs77489732', 'effect_allele': 'C', 'effect_allele_frequency': 0.0242, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9758}]
general
Calculate, Select
Allele Frequency
Q2.1360
Q2
What is the allele frequency of the SNP rs2140868 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2140868 has an effect allele C frequency of 0.2259 and non-effect allele T frequency of 0.7741.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2140868" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5265586', 'SNP': 'rs2140868', 'effect_allele': 'C', 'effect_allele_frequency': 0.2259, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7741}]
general
Calculate, Select
Allele Frequency
Q2.1734
Q2
What is the allele frequency of the SNP rs55924200 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs55924200 has an effect allele A frequency of 0.2071 and non-effect allele G frequency of 0.7929.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs55924200" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6787574', 'SNP': 'rs55924200', 'effect_allele': 'A', 'effect_allele_frequency': 0.2071, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.7928999999999999}]
general
Calculate, Select
Allele Frequency
Q2.170
Q2
What is the allele frequency of the SNP rs11818460 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11818460 has an effect allele C frequency of 0.2966 and non-effect allele A frequency of 0.7034.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11818460" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_651073', 'SNP': 'rs11818460', 'effect_allele': 'C', 'effect_allele_frequency': 0.2966, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.7034}]
general
Calculate, Select
Allele Frequency
Q2.13
Q2
What is the allele frequency of the SNP rs2273795 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs2273795 has an effect allele T frequency of 0.3684 and non-effect allele G frequency of 0.6316.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs2273795" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_35500', 'SNP': 'rs2273795', 'effect_allele': 'T', 'effect_allele_frequency': 0.3684, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.6315999999999999}]
general
Calculate, Select
Allele Frequency
Q2.1927
Q2
What is the allele frequency of the SNP rs77880186 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs77880186 has an effect allele G frequency of 0.0286 and non-effect allele A frequency of 0.9714.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs77880186" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7485350', 'SNP': 'rs77880186', 'effect_allele': 'G', 'effect_allele_frequency': 0.0285999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.9714000000000002}]
general
Calculate, Select
Allele Frequency
Q2.174
Q2
What is the allele frequency of the SNP rs150524563 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs150524563 has an effect allele A frequency of 0.0146 and non-effect allele G frequency of 0.9854.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs150524563" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_659324', 'SNP': 'rs150524563', 'effect_allele': 'A', 'effect_allele_frequency': 0.0146, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9854}]
general
Calculate, Select
Allele Frequency
Q2.656
Q2
What is the allele frequency of the SNP rs116147306 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs116147306 has an effect allele C frequency of 0.0292 and non-effect allele T frequency of 0.9708.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs116147306" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2501046', 'SNP': 'rs116147306', 'effect_allele': 'C', 'effect_allele_frequency': 0.0292, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.9708}]
general
Calculate, Select
Allele Frequency
Q2.1062
Q2
What is the allele frequency of the SNP rs1203984 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs1203984 has an effect allele A frequency of 0.2855 and non-effect allele G frequency of 0.7145.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs1203984" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_4085594', 'SNP': 'rs1203984', 'effect_allele': 'A', 'effect_allele_frequency': 0.2855, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.7145}]
general
Calculate, Select
Allele Frequency
Q2.263
Q2
What is the allele frequency of the SNP rs10116650 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs10116650 has an effect allele A frequency of 0.2954 and non-effect allele G frequency of 0.7046.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs10116650" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_987885', 'SNP': 'rs10116650', 'effect_allele': 'A', 'effect_allele_frequency': 0.2954, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.7046}]
general
Calculate, Select
Allele Frequency
Q2.1427
Q2
What is the allele frequency of the SNP rs73225771 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs73225771 has an effect allele G frequency of 0.1095 and non-effect allele A frequency of 0.8905.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs73225771" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_5527550', 'SNP': 'rs73225771', 'effect_allele': 'G', 'effect_allele_frequency': 0.1095, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.8905}]
general
Calculate, Select
Allele Frequency
Q2.1582
Q2
What is the allele frequency of the SNP rs74782536 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs74782536 has an effect allele G frequency of 0.0339 and non-effect allele A frequency of 0.9661.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs74782536" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6095811', 'SNP': 'rs74782536', 'effect_allele': 'G', 'effect_allele_frequency': 0.0339, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.9661}]
general
Calculate, Select
Allele Frequency
Q2.909
Q2
What is the allele frequency of the SNP rs3920495 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs3920495 has an effect allele C frequency of 0.3599 and non-effect allele G frequency of 0.6401.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs3920495" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3518264', 'SNP': 'rs3920495', 'effect_allele': 'C', 'effect_allele_frequency': 0.3599, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.6401}]
general
Calculate, Select
Allele Frequency
Q2.679
Q2
What is the allele frequency of the SNP rs11637366 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11637366 has an effect allele C frequency of 0.0323 and non-effect allele A frequency of 0.9677.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11637366" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2588684', 'SNP': 'rs11637366', 'effect_allele': 'C', 'effect_allele_frequency': 0.0322999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.9677000000000001}]
general
Calculate, Select
Allele Frequency
Q2.261
Q2
What is the allele frequency of the SNP rs57384594 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs57384594 has an effect allele A frequency of 0.0178 and non-effect allele G frequency of 0.9822.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs57384594" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_976325', 'SNP': 'rs57384594', 'effect_allele': 'A', 'effect_allele_frequency': 0.0178, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9822}]
general
Calculate, Select
Allele Frequency
Q2.851
Q2
What is the allele frequency of the SNP rs11100388 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs11100388 has an effect allele C frequency of 0.0395 and non-effect allele A frequency of 0.9605.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs11100388" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3289499', 'SNP': 'rs11100388', 'effect_allele': 'C', 'effect_allele_frequency': 0.0394999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.9605000000000001}]
general
Calculate, Select
Allele Frequency
Q2.874
Q2
What is the allele frequency of the SNP rs113193605 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs113193605 has an effect allele C frequency of 0.1079 and non-effect allele T frequency of 0.8921.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs113193605" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3384567', 'SNP': 'rs113193605', 'effect_allele': 'C', 'effect_allele_frequency': 0.1079, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.8921}]
general
Calculate, Select
Allele Frequency
Q2.1564
Q2
What is the allele frequency of the SNP rs117211748 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs117211748 has an effect allele G frequency of 0.0698 and non-effect allele A frequency of 0.9302.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs117211748" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_6041284', 'SNP': 'rs117211748', 'effect_allele': 'G', 'effect_allele_frequency': 0.0697999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.9302000000000001}]
general
Calculate, Select
Allele Frequency
Q2.141
Q2
What is the allele frequency of the SNP rs6918245 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs6918245 has an effect allele C frequency of 0.3812 and non-effect allele G frequency of 0.6188.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs6918245" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_503542', 'SNP': 'rs6918245', 'effect_allele': 'C', 'effect_allele_frequency': 0.3812, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.6188}]
general
Calculate, Select
Allele Frequency
Q2.900
Q2
What is the allele frequency of the SNP rs17804499 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs17804499 has an effect allele C frequency of 0.0616 and non-effect allele G frequency of 0.9384.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs17804499" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_3462440', 'SNP': 'rs17804499', 'effect_allele': 'C', 'effect_allele_frequency': 0.0616, 'non_effect_allele': 'G', 'non_effect_allele_frequency': 0.9384}]
general
Calculate, Select
Allele Frequency
Q2.1839
Q2
What is the allele frequency of the SNP rs61359548 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs61359548 has an effect allele C frequency of 0.2897 and non-effect allele A frequency of 0.7103.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs61359548" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_7161644', 'SNP': 'rs61359548', 'effect_allele': 'C', 'effect_allele_frequency': 0.2896999999999999, 'non_effect_allele': 'A', 'non_effect_allele_frequency': 0.7103000000000002}]
general
Calculate, Select
Allele Frequency
Q2.555
Q2
What is the allele frequency of the SNP rs55676833 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs55676833 has an effect allele T frequency of 0.1205 and non-effect allele C frequency of 0.8795.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs55676833" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_2040677', 'SNP': 'rs55676833', 'effect_allele': 'T', 'effect_allele_frequency': 0.1205, 'non_effect_allele': 'C', 'non_effect_allele_frequency': 0.8795}]
general
Calculate, Select
Allele Frequency
Q2.323
Q2
What is the allele frequency of the SNP rs7068511 in a Parkinson's Disease study involving a European cohort?
According to the largest European genome-wide meta-analysis of Parkinson's disease from Nalls (2019), single nucleotide polymorphism rs7068511 has an effect allele C frequency of 0.2376 and non-effect allele T frequency of 0.7624.
SELECT UUID, SNP, A1 AS effect_allele, freq AS effect_allele_frequency, A2 AS non_effect_allele, 1-freq AS non_effect_allele_frequency FROM `{project_id}.{dataset_name}.ParkinsonDisease_CompleteGeneData_No23andMe` WHERE SNP = "rs7068511" LIMIT 100
[{'UUID': 'PDno23andme_full_gene_notext_1181499', 'SNP': 'rs7068511', 'effect_allele': 'C', 'effect_allele_frequency': 0.2376, 'non_effect_allele': 'T', 'non_effect_allele_frequency': 0.7624}]
general
Calculate, Select
Allele Frequency