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 |
|---|---|---|---|---|---|---|---|---|
Q55.1308 | Q55 | Based on Whole Blood eQTL GTEx data, what is the top SNP in C16orf93 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | C16orf93 has no SNPs significantly associated with Parkinson's Disease in the Whole Blood eQTL GTEx. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'C16orf93' AND LOWER(Omic_type) LIKE "%whole blood eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mult... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1666 | Q55 | Based on Whole Blood mQTL data, what is the top SNP in GPNMB that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | GPNMB has no SNPs significantly associated with Lewy Body Dementia in the Whole Blood mQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'GPNMB' AND LOWER(Omic_type) LIKE "%whole blood mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1270 | Q55 | Based on Anterior Cingulate Cortex BA24 eQTL data, what is the top SNP in DND1P1 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | DND1P1's most significantly associated SNP with Parkinson's Disease in the Anterior Cingulate Cortex BA24 eQTL is rs55974014, with adjusted SMR multi-SNP P-value of 5.50e-10 and a HEIDI value of 5.1890e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'DND1P1' AND LOWER(Omic_type) LIKE "%anterior cingulate cortex ba24 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER B... | [{'UUID': 'NDD_SMR_genes_all_update_text_1488136', 'topRSID': 'rs55974014', 'Disease': 'PD', 'Gene': 'DND1P1', 'p_SMR_multi': 5.499578e-10, 'p_HEIDI': 0.5188977, 'Omic_tissue': 'Anterior Cingulate Cortex BA24', 'Omic_type': 'Anterior Cingulate Cortex BA24 eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.493 | Q55 | Based on Whole Brain eQTL data, what is the top SNP in MAPT-AS1 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | MAPT-AS1 has no SNPs significantly associated with Progressive supranuclear palsy in the Whole Brain eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'MAPT-AS1' AND LOWER(Omic_type) LIKE "%whole brain eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.565 | Q55 | Based on Whole Brain meta-analysis mQTL data, what is the top SNP in LLGL1 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | LLGL1's most significantly associated SNP with Alzheimer's Disease in the Whole Brain meta-analysis mQTL is rs57808902, with adjusted SMR multi-SNP P-value of 1.93e-06 and a HEIDI value of 2.5009e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'LLGL1' AND LOWER(Omic_type) LIKE "%whole brain meta-analysis mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SM... | [{'UUID': 'NDD_SMR_genes_all_update_text_113816', 'topRSID': 'rs57808902', 'Disease': 'AD', 'Gene': 'LLGL1', 'p_SMR_multi': 1.930696e-06, 'p_HEIDI': 0.2500914, 'Omic_tissue': 'Whole Brain', 'Omic_type': 'Whole Brain meta-analysis mQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1151 | Q55 | Based on Liver eQTL data, what is the top SNP in ZNF311 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | ZNF311 has no SNPs significantly associated with Lewy Body Dementia in the Liver eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'ZNF311' AND LOWER(Omic_type) LIKE "%liver eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1129 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in CRHR1 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | CRHR1's most significantly associated SNP with Parkinson's Disease in the Skeletal Muscle eQTL is rs199439, with adjusted SMR multi-SNP P-value of 2.00e-06 and a HEIDI value of 2.4941e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'CRHR1' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [{'UUID': 'NDD_SMR_genes_all_update_text_1370543', 'topRSID': 'rs199439', 'Disease': 'PD', 'Gene': 'CRHR1', 'p_SMR_multi': 1.996057e-06, 'p_HEIDI': 0.2494065, 'Omic_tissue': 'Skeletal Muscle', 'Omic_type': 'Skeletal Muscle eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.808 | Q55 | Based on Whole Blood eQTL eQTLgen data, what is the top SNP in INPP5D that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | INPP5D's most significantly associated SNP with Alzheimer's Disease in the Whole Blood eQTL eQTLgen is rs62192877, with adjusted SMR multi-SNP P-value of 1.28e-14 and a HEIDI value of 2.0808e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'INPP5D' AND LOWER(Omic_type) LIKE "%whole blood eqtl eqtlgen%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mul... | [{'UUID': 'NDD_SMR_genes_all_update_text_1492359', 'topRSID': 'rs62192877', 'Disease': 'AD', 'Gene': 'INPP5D', 'p_SMR_multi': 1.280101e-14, 'p_HEIDI': 0.020808, 'Omic_tissue': 'Whole Blood', 'Omic_type': 'Whole Blood eQTL eQTLgen'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.518 | Q55 | Based on Amygdala eQTL data, what is the top SNP in ADORA2B that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | ADORA2B has no SNPs significantly associated with Progressive supranuclear palsy in the Amygdala eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'ADORA2B' AND LOWER(Omic_type) LIKE "%amygdala eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.640 | Q55 | Based on Putamen Basal Ganglia eQTL data, what is the top SNP in PILRB that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | PILRB has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Putamen Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'PILRB' AND LOWER(Omic_type) LIKE "%putamen basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_m... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1480 | Q55 | Based on Hypothalamus eQTL data, what is the top SNP in ARL17A that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | ARL17A's most significantly associated SNP with Parkinson's Disease in the Hypothalamus eQTL is rs17573607, with adjusted SMR multi-SNP P-value of 3.98e-10 and a HEIDI value of 7.6442e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'ARL17A' AND LOWER(Omic_type) LIKE "%hypothalamus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIM... | [{'UUID': 'NDD_SMR_genes_all_update_text_1462903', 'topRSID': 'rs17573607', 'Disease': 'PD', 'Gene': 'ARL17A', 'p_SMR_multi': 3.975815e-10, 'p_HEIDI': 0.7644244, 'Omic_tissue': 'Hypothalamus', 'Omic_type': 'Hypothalamus eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1789 | Q55 | Based on Cortex eQTL metaBrain data, what is the top SNP in APOC2 that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | APOC2 has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Cortex eQTL metaBrain. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'APOC2' AND LOWER(Omic_type) LIKE "%cortex eqtl metabrain%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1546 | Q55 | Based on Tibial Nerve eQTL data, what is the top SNP in SCIMP that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | SCIMP's most significantly associated SNP with Alzheimer's Disease in the Tibial Nerve eQTL is rs12449702, with adjusted SMR multi-SNP P-value of 2.46e-06 and a HEIDI value of 2.4375e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'SCIMP' AND LOWER(Omic_type) LIKE "%tibial nerve eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMI... | [{'UUID': 'NDD_SMR_genes_all_update_text_1291510', 'topRSID': 'rs12449702', 'Disease': 'AD', 'Gene': 'SCIMP', 'p_SMR_multi': 2.46173e-06, 'p_HEIDI': 0.02437518, 'Omic_tissue': 'Tibial Nerve', 'Omic_type': 'Tibial Nerve eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1160 | Q55 | Based on Whole Brain eQTL data, what is the top SNP in MS4A4A that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | MS4A4A has no SNPs significantly associated with Parkinson's Disease in the Whole Brain eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'MS4A4A' AND LOWER(Omic_type) LIKE "%whole brain eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.797 | Q55 | Based on Amygdala eQTL data, what is the top SNP in DYDC2 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | DYDC2 has no SNPs significantly associated with Progressive supranuclear palsy in the Amygdala eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'DYDC2' AND LOWER(Omic_type) LIKE "%amygdala eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.119 | Q55 | Based on Hippocampus eQTL data, what is the top SNP in STX4 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | STX4 has no SNPs significantly associated with Progressive supranuclear palsy in the Hippocampus eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'STX4' AND LOWER(Omic_type) LIKE "%hippocampus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.747 | Q55 | Based on Anterior Cingulate Cortex BA24 eQTL data, what is the top SNP in RP11-259G18.2 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | RP11-259G18.2's most significantly associated SNP with Alzheimer's Disease in the Anterior Cingulate Cortex BA24 eQTL is rs199533, with adjusted SMR multi-SNP P-value of 2.51e-06 and a HEIDI value of 4.5664e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'RP11-259G18.2' AND LOWER(Omic_type) LIKE "%anterior cingulate cortex ba24 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
... | [{'UUID': 'NDD_SMR_genes_all_update_text_1480160', 'topRSID': 'rs199533', 'Disease': 'AD', 'Gene': 'RP11-259G18.2', 'p_SMR_multi': 2.511431e-06, 'p_HEIDI': 0.4566359, 'Omic_tissue': 'Anterior Cingulate Cortex BA24', 'Omic_type': 'Anterior Cingulate Cortex BA24 eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1691 | Q55 | Based on Nucleus Accumbens Basal Ganglia data, what is the top SNP in STAG3L5P that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | STAG3L5P has no SNPs significantly associated with Parkinson's Disease in the Nucleus Accumbens Basal Ganglia. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'STAG3L5P' AND LOWER(Omic_type) LIKE "%nucleus accumbens basal ganglia%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY ... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1090 | Q55 | Based on Cortex eQTL metaBrain data, what is the top SNP in APH1B that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | APH1B's most significantly associated SNP with Alzheimer's Disease in the Cortex eQTL metaBrain is rs75763893, with adjusted SMR multi-SNP P-value of 2.63e-09 and a HEIDI value of 3.2627e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'APH1B' AND LOWER(Omic_type) LIKE "%cortex eqtl metabrain%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [{'UUID': 'NDD_SMR_genes_all_update_text_1110004', 'topRSID': 'rs75763893', 'Disease': 'AD', 'Gene': 'APH1B', 'p_SMR_multi': 2.627631e-09, 'p_HEIDI': 0.03262681, 'Omic_tissue': 'Cortex', 'Omic_type': 'Cortex eQTL metaBrain'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.837 | Q55 | Based on Whole Blood eQTL eQTLgen data, what is the top SNP in YPEL3 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | YPEL3's most significantly associated SNP with Alzheimer's Disease in the Whole Blood eQTL eQTLgen is rs9932605, with adjusted SMR multi-SNP P-value of 1.16e-09 and a HEIDI value of 1.1287e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'YPEL3' AND LOWER(Omic_type) LIKE "%whole blood eqtl eqtlgen%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mult... | [{'UUID': 'NDD_SMR_genes_all_update_text_1501444', 'topRSID': 'rs9932605', 'Disease': 'AD', 'Gene': 'YPEL3', 'p_SMR_multi': 1.157442e-09, 'p_HEIDI': 0.01128746, 'Omic_tissue': 'Whole Blood', 'Omic_type': 'Whole Blood eQTL eQTLgen'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.122 | Q55 | Based on Cerebellar Hemisphere eQTL data, what is the top SNP in LRRC37A4P that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | LRRC37A4P has no SNPs significantly associated with Progressive supranuclear palsy in the Cerebellar Hemisphere eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'LRRC37A4P' AND LOWER(Omic_type) LIKE "%cerebellar hemisphere eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_S... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.663 | Q55 | Based on Cerebellum eQTL data, what is the top SNP in CR1 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | CR1's most significantly associated SNP with Alzheimer's Disease in the Cerebellum eQTL is rs1830763, with adjusted SMR multi-SNP P-value of 1.72e-08 and a HEIDI value of 1.0919e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'CR1' AND LOWER(Omic_type) LIKE "%cerebellum eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [{'UUID': 'NDD_SMR_genes_all_update_text_2441', 'topRSID': 'rs1830763', 'Disease': 'AD', 'Gene': 'CR1', 'p_SMR_multi': 1.723238e-08, 'p_HEIDI': 0.1091882, 'Omic_tissue': 'Cerebellum', 'Omic_type': 'Cerebellum eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1908 | Q55 | Based on Anterior Cingulate Cortex BA24 eQTL data, what is the top SNP in ATF6B that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | ATF6B has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Anterior Cingulate Cortex BA24 eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'ATF6B' AND LOWER(Omic_type) LIKE "%anterior cingulate cortex ba24 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER B... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.642 | Q55 | Based on Prefrontal Cortex eQTL data, what is the top SNP in TSPAN14 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | TSPAN14's most significantly associated SNP with Alzheimer's Disease in the Prefrontal Cortex eQTL is rs10749609, with adjusted SMR multi-SNP P-value of 2.37e-07 and a HEIDI value of 1.5078e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'TSPAN14' AND LOWER(Omic_type) LIKE "%prefrontal cortex eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mult... | [{'UUID': 'NDD_SMR_genes_all_update_text_1200108', 'topRSID': 'rs10749609', 'Disease': 'AD', 'Gene': 'TSPAN14', 'p_SMR_multi': 2.370245e-07, 'p_HEIDI': 0.1507844, 'Omic_tissue': 'Prefrontal Cortex', 'Omic_type': 'Prefrontal Cortex eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.374 | Q55 | Based on Frontal Cortex BA9 eQTL data, what is the top SNP in EPHB4 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | EPHB4 has no SNPs significantly associated with Parkinson's Disease in the Frontal Cortex BA9 eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'EPHB4' AND LOWER(Omic_type) LIKE "%frontal cortex ba9 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.271 | Q55 | Based on Caudate Basal Ganglia eQTL data, what is the top SNP in POU5F1 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | POU5F1 has no SNPs significantly associated with Parkinson's Disease in the Caudate Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'POU5F1' AND LOWER(Omic_type) LIKE "%caudate basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_m... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.662 | Q55 | Based on Hypothalamus eQTL data, what is the top SNP in ZSCAN9 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | ZSCAN9 has no SNPs significantly associated with Progressive supranuclear palsy in the Hypothalamus eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'ZSCAN9' AND LOWER(Omic_type) LIKE "%hypothalamus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.944 | Q55 | Based on Whole Brain meta-analysis mQTL data, what is the top SNP in PRSS36 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | PRSS36's most significantly associated SNP with Parkinson's Disease in the Whole Brain meta-analysis mQTL is rs55667375, with adjusted SMR multi-SNP P-value of 2.18e-06 and a HEIDI value of 1.7796e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'PRSS36' AND LOWER(Omic_type) LIKE "%whole brain meta-analysis mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_S... | [{'UUID': 'NDD_SMR_genes_all_update_text_485473', 'topRSID': 'rs55667375', 'Disease': 'PD', 'Gene': 'PRSS36', 'p_SMR_multi': 2.181694e-06, 'p_HEIDI': 0.1779642, 'Omic_tissue': 'Whole Brain', 'Omic_type': 'Whole Brain meta-analysis mQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.829 | Q55 | Based on Spinalcord eQTL data, what is the top SNP in RP11-115L11.1 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | RP11-115L11.1 has no SNPs significantly associated with Progressive supranuclear palsy in the Spinalcord eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'RP11-115L11.1' AND LOWER(Omic_type) LIKE "%spinalcord eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mult... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.873 | Q55 | Based on Cerebellar Hemisphere eQTL data, what is the top SNP in LACTB that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | LACTB has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Cerebellar Hemisphere eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'LACTB' AND LOWER(Omic_type) LIKE "%cerebellar hemisphere eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_m... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.47 | Q55 | Based on Spinalcord eQTL data, what is the top SNP in ZFP57 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | ZFP57 has no SNPs significantly associated with Progressive supranuclear palsy in the Spinalcord eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'ZFP57' AND LOWER(Omic_type) LIKE "%spinalcord eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1388 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in FAM57B that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | FAM57B's most significantly associated SNP with Alzheimer's Disease in the Skeletal Muscle eQTL is rs7191849, with adjusted SMR multi-SNP P-value of 1.13e-06 and a HEIDI value of 1.5865e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'FAM57B' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [{'UUID': 'NDD_SMR_genes_all_update_text_1342780', 'topRSID': 'rs7191849', 'Disease': 'AD', 'Gene': 'FAM57B', 'p_SMR_multi': 1.125747e-06, 'p_HEIDI': 0.1586474, 'Omic_tissue': 'Skeletal Muscle', 'Omic_type': 'Skeletal Muscle eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1709 | Q55 | Based on Whole Brain eQTL data, what is the top SNP in RP11-259G18.3 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | RP11-259G18.3's most significantly associated SNP with Alzheimer's Disease in the Whole Brain eQTL is rs199533, with adjusted SMR multi-SNP P-value of 2.13e-06 and a HEIDI value of 1.0895e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'RP11-259G18.3' AND LOWER(Omic_type) LIKE "%whole brain eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mult... | [{'UUID': 'NDD_SMR_genes_all_update_text_1610868', 'topRSID': 'rs199533', 'Disease': 'AD', 'Gene': 'RP11-259G18.3', 'p_SMR_multi': 2.129162e-06, 'p_HEIDI': 0.1089491, 'Omic_tissue': 'Whole Brain', 'Omic_type': 'Whole Brain eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1000 | Q55 | Based on Whole Brain eQTL data, what is the top SNP in RABEP1 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | RABEP1 has no SNPs significantly associated with Lewy Body Dementia in the Whole Brain eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'RABEP1' AND LOWER(Omic_type) LIKE "%whole brain eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIM... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.883 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in MAPT-AS1 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | MAPT-AS1's most significantly associated SNP with Parkinson's Disease in the Skeletal Muscle eQTL is rs1879585, with adjusted SMR multi-SNP P-value of 4.80e-09 and a HEIDI value of 8.3022e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'MAPT-AS1' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi... | [{'UUID': 'NDD_SMR_genes_all_update_text_1370544', 'topRSID': 'rs1879585', 'Disease': 'PD', 'Gene': 'MAPT-AS1', 'p_SMR_multi': 4.799737e-09, 'p_HEIDI': 0.08302246, 'Omic_tissue': 'Skeletal Muscle', 'Omic_type': 'Skeletal Muscle eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.780 | Q55 | Based on Putamen Basal Ganglia eQTL data, what is the top SNP in ZNF646 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | ZNF646 has no SNPs significantly associated with Lewy Body Dementia in the Putamen Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'ZNF646' AND LOWER(Omic_type) LIKE "%putamen basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1229 | Q55 | Based on Whole Blood eQTL eQTLgen data, what is the top SNP in TMEM163 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | TMEM163 has no SNPs significantly associated with Parkinson's Disease in the Whole Blood eQTL eQTLgen. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'TMEM163' AND LOWER(Omic_type) LIKE "%whole blood eqtl eqtlgen%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mu... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.2000 | Q55 | Based on Frontal Cortex BA9 eQTL data, what is the top SNP in KLHL7-AS1 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | KLHL7-AS1's most significantly associated SNP with Parkinson's Disease in the Frontal Cortex BA9 eQTL is rs10256524, with adjusted SMR multi-SNP P-value of 4.74e-07 and a HEIDI value of 1.2758e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'KLHL7-AS1' AND LOWER(Omic_type) LIKE "%frontal cortex ba9 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_m... | [{'UUID': 'NDD_SMR_genes_all_update_text_1167541', 'topRSID': 'rs10256524', 'Disease': 'PD', 'Gene': 'KLHL7-AS1', 'p_SMR_multi': 4.735275e-07, 'p_HEIDI': 0.0127584, 'Omic_tissue': 'Frontal Cortex', 'Omic_type': 'Frontal Cortex BA9 eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.5 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in COPS6 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | COPS6 has no SNPs significantly associated with Alzheimer's Disease in the Skeletal Muscle eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'COPS6' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1012 | Q55 | Based on Basal Ganglia eQTL data, what is the top SNP in TRIM27 that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | TRIM27 has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'TRIM27' AND LOWER(Omic_type) LIKE "%basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1724 | Q55 | Based on Anterior Cingulate Cortex BA24 eQTL data, what is the top SNP in TREM2 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | TREM2 has no SNPs significantly associated with Lewy Body Dementia in the Anterior Cingulate Cortex BA24 eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'TREM2' AND LOWER(Omic_type) LIKE "%anterior cingulate cortex ba24 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER B... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.266 | Q55 | Based on Hypothalamus eQTL data, what is the top SNP in PVRIG that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | PVRIG's most significantly associated SNP with Alzheimer's Disease in the Hypothalamus eQTL is rs1623264, with adjusted SMR multi-SNP P-value of 1.03e-06 and a HEIDI value of 5.8139e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'PVRIG' AND LOWER(Omic_type) LIKE "%hypothalamus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMI... | [{'UUID': 'NDD_SMR_genes_all_update_text_1453490', 'topRSID': 'rs1623264', 'Disease': 'AD', 'Gene': 'PVRIG', 'p_SMR_multi': 1.030527e-06, 'p_HEIDI': 0.0581387, 'Omic_tissue': 'Hypothalamus', 'Omic_type': 'Hypothalamus eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1570 | Q55 | Based on Liver eQTL data, what is the top SNP in TRIM31 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | TRIM31 has no SNPs significantly associated with Lewy Body Dementia in the Liver eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'TRIM31' AND LOWER(Omic_type) LIKE "%liver eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1832 | Q55 | Based on Cortex eQTL metaBrain data, what is the top SNP in NUP42 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | NUP42's most significantly associated SNP with Parkinson's Disease in the Cortex eQTL metaBrain is rs2286272, with adjusted SMR multi-SNP P-value of 5.69e-08 and a HEIDI value of 7.8191e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'NUP42' AND LOWER(Omic_type) LIKE "%cortex eqtl metabrain%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [{'UUID': 'NDD_SMR_genes_all_update_text_1146422', 'topRSID': 'rs2286272', 'Disease': 'PD', 'Gene': 'NUP42', 'p_SMR_multi': 5.686312e-08, 'p_HEIDI': 0.07819106, 'Omic_tissue': 'Cortex', 'Omic_type': 'Cortex eQTL metaBrain'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.449 | Q55 | Based on Whole Blood mQTL data, what is the top SNP in STAG3L5P that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | STAG3L5P has no SNPs significantly associated with Parkinson's Disease in the Whole Blood mQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'STAG3L5P' AND LOWER(Omic_type) LIKE "%whole blood mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1011 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in MEPCE that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | MEPCE has no SNPs significantly associated with Lewy Body Dementia in the Skeletal Muscle eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'MEPCE' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1086 | Q55 | Based on Prefrontal Cortex eQTL data, what is the top SNP in LRRC37A2 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | LRRC37A2's most significantly associated SNP with Alzheimer's Disease in the Prefrontal Cortex eQTL is rs2696466, with adjusted SMR multi-SNP P-value of 1.22e-08 and a HEIDI value of 4.8368e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'LRRC37A2' AND LOWER(Omic_type) LIKE "%prefrontal cortex eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mul... | [{'UUID': 'NDD_SMR_genes_all_update_text_1203020', 'topRSID': 'rs2696466', 'Disease': 'AD', 'Gene': 'LRRC37A2', 'p_SMR_multi': 1.220094e-08, 'p_HEIDI': 0.04836808, 'Omic_tissue': 'Prefrontal Cortex', 'Omic_type': 'Prefrontal Cortex eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.844 | Q55 | Based on Whole Blood eQTL GTEx data, what is the top SNP in TMEM106B that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | TMEM106B has no SNPs significantly associated with Lewy Body Dementia in the Whole Blood eQTL GTEx. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'TMEM106B' AND LOWER(Omic_type) LIKE "%whole blood eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mul... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1792 | Q55 | Based on Nucleus Accumbens Basal Ganglia data, what is the top SNP in CCNE2 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | CCNE2 has no SNPs significantly associated with Lewy Body Dementia in the Nucleus Accumbens Basal Ganglia. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'CCNE2' AND LOWER(Omic_type) LIKE "%nucleus accumbens basal ganglia%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.308 | Q55 | Based on Substantia nigra eQTL data, what is the top SNP in TMEM163 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | TMEM163 has no SNPs significantly associated with Parkinson's Disease in the Substantia nigra eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'TMEM163' AND LOWER(Omic_type) LIKE "%substantia nigra eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1380 | Q55 | Based on Basal Ganglia eQTL data, what is the top SNP in MS4A4A that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | MS4A4A has no SNPs significantly associated with Progressive supranuclear palsy in the Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'MS4A4A' AND LOWER(Omic_type) LIKE "%basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1558 | Q55 | Based on Whole Blood mQTL data, what is the top SNP in TREM2 that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | TREM2 has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Whole Blood mQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'TREM2' AND LOWER(Omic_type) LIKE "%whole blood mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.317 | Q55 | Based on Prefrontal Cortex eQTL data, what is the top SNP in MAPT-AS1 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | MAPT-AS1 has no SNPs significantly associated with Alzheimer's Disease in the Prefrontal Cortex eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'MAPT-AS1' AND LOWER(Omic_type) LIKE "%prefrontal cortex eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mul... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.152 | Q55 | Based on Basal Ganglia eQTL data, what is the top SNP in KANSL1-AS1 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | KANSL1-AS1 has no SNPs significantly associated with Lewy Body Dementia in the Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'KANSL1-AS1' AND LOWER(Omic_type) LIKE "%basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mult... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1158 | Q55 | Based on Anterior Cingulate Cortex BA24 eQTL data, what is the top SNP in KANSL1 that is associated with Progressive supranuclear palsy (PSP), and what is its adjusted SMR p-value? | KANSL1's most significantly associated SNP with Progressive supranuclear palsy in the Anterior Cingulate Cortex BA24 eQTL is rs11869096, with adjusted SMR multi-SNP P-value of 1.03e-06 and a HEIDI value of 2.4125e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'Progressive supranuclear palsy (PSP)' AND Gene = 'KANSL1' AND LOWER(Omic_type) LIKE "%anterior cingulate cortex ba24 eqtl%" AND p_SMR_multi < 2... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1223 | Q55 | Based on Whole Brain meta-analysis mQTL data, what is the top SNP in DND1P1 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | DND1P1's most significantly associated SNP with Alzheimer's Disease in the Whole Brain meta-analysis mQTL is rs451737, with adjusted SMR multi-SNP P-value of 1.11e-06 and a HEIDI value of 9.4314e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'DND1P1' AND LOWER(Omic_type) LIKE "%whole brain meta-analysis mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_S... | [{'UUID': 'NDD_SMR_genes_all_update_text_115145', 'topRSID': 'rs451737', 'Disease': 'AD', 'Gene': 'DND1P1', 'p_SMR_multi': 1.11147e-06, 'p_HEIDI': 0.9431384, 'Omic_tissue': 'Whole Brain', 'Omic_type': 'Whole Brain meta-analysis mQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.580 | Q55 | Based on Anterior Cingulate Cortex BA24 eQTL data, what is the top SNP in ARHGAP27 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | ARHGAP27 has no SNPs significantly associated with Alzheimer's Disease in the Anterior Cingulate Cortex BA24 eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'ARHGAP27' AND LOWER(Omic_type) LIKE "%anterior cingulate cortex ba24 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.51 | Q55 | Based on Hypothalamus eQTL data, what is the top SNP in NSFP1 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | NSFP1 has no SNPs significantly associated with Progressive supranuclear palsy in the Hypothalamus eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'NSFP1' AND LOWER(Omic_type) LIKE "%hypothalamus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIM... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1553 | Q55 | Based on Whole Brain meta-analysis mQTL data, what is the top SNP in SCAND3 that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | SCAND3 has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Whole Brain meta-analysis mQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'SCAND3' AND LOWER(Omic_type) LIKE "%whole brain meta-analysis mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.733 | Q55 | Based on Whole Blood eQTL GTEx data, what is the top SNP in KANSL1-AS1 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | KANSL1-AS1's most significantly associated SNP with Alzheimer's Disease in the Whole Blood eQTL GTEx is rs199456, with adjusted SMR multi-SNP P-value of 6.90e-07 and a HEIDI value of 2.1528e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'KANSL1-AS1' AND LOWER(Omic_type) LIKE "%whole blood eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mu... | [{'UUID': 'NDD_SMR_genes_all_update_text_1652499', 'topRSID': 'rs199456', 'Disease': 'AD', 'Gene': 'KANSL1-AS1', 'p_SMR_multi': 6.90175e-07, 'p_HEIDI': 0.2152821, 'Omic_tissue': 'Whole Blood', 'Omic_type': 'Whole Blood eQTL GTEx'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.840 | Q55 | Based on Liver eQTL data, what is the top SNP in MMRN1 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | MMRN1's most significantly associated SNP with Parkinson's Disease in the Liver eQTL is rs1866995, with adjusted SMR multi-SNP P-value of 1.04e-06 and a HEIDI value of 4.4162e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'MMRN1' AND LOWER(Omic_type) LIKE "%liver eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [{'UUID': 'NDD_SMR_genes_all_update_text_1475008', 'topRSID': 'rs1866995', 'Disease': 'PD', 'Gene': 'MMRN1', 'p_SMR_multi': 1.038552e-06, 'p_HEIDI': 0.04416156, 'Omic_tissue': 'Liver', 'Omic_type': 'Liver eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1392 | Q55 | Based on Cerebellar Hemisphere eQTL data, what is the top SNP in STK39 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | STK39 has no SNPs significantly associated with Alzheimer's Disease in the Cerebellar Hemisphere eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'STK39' AND LOWER(Omic_type) LIKE "%cerebellar hemisphere eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mu... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1125 | Q55 | Based on Prefrontal Cortex eQTL data, what is the top SNP in HSD3B7 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | HSD3B7's most significantly associated SNP with Parkinson's Disease in the Prefrontal Cortex eQTL is rs13708, with adjusted SMR multi-SNP P-value of 7.64e-07 and a HEIDI value of 9.3630e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'HSD3B7' AND LOWER(Omic_type) LIKE "%prefrontal cortex eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi... | [{'UUID': 'NDD_SMR_genes_all_update_text_1241724', 'topRSID': 'rs13708', 'Disease': 'PD', 'Gene': 'HSD3B7', 'p_SMR_multi': 7.637274e-07, 'p_HEIDI': 0.09362997, 'Omic_tissue': 'Prefrontal Cortex', 'Omic_type': 'Prefrontal Cortex eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1176 | Q55 | Based on Tibial Nerve eQTL data, what is the top SNP in LRRC37A2 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | LRRC37A2 has no SNPs significantly associated with Parkinson's Disease in the Tibial Nerve eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'LRRC37A2' AND LOWER(Omic_type) LIKE "%tibial nerve eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.476 | Q55 | Based on Whole Blood eQTL eQTLgen data, what is the top SNP in RP11-120K18.3 that is associated with Parkinson's Disease (PD), and what is its adjusted SMR p-value? | RP11-120K18.3's most significantly associated SNP with Parkinson's Disease in the Whole Blood eQTL eQTLgen is rs11150614, with adjusted SMR multi-SNP P-value of 3.67e-07 and a HEIDI value of 1.2762e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'RP11-120K18.3' AND LOWER(Omic_type) LIKE "%whole blood eqtl eqtlgen%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_... | [{'UUID': 'NDD_SMR_genes_all_update_text_1563821', 'topRSID': 'rs11150614', 'Disease': 'PD', 'Gene': 'RP11-120K18.3', 'p_SMR_multi': 3.669227e-07, 'p_HEIDI': 0.1276231, 'Omic_tissue': 'Whole Blood', 'Omic_type': 'Whole Blood eQTL eQTLgen'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.980 | Q55 | Based on Cortex eQTL GTEx data, what is the top SNP in CYP21A2 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | CYP21A2 has no SNPs significantly associated with Progressive supranuclear palsy in the Cortex eQTL GTEx. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'CYP21A2' AND LOWER(Omic_type) LIKE "%cortex eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.660 | Q55 | Based on Spinalcord eQTL data, what is the top SNP in CLU that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | CLU has no SNPs significantly associated with Progressive supranuclear palsy in the Spinalcord eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'CLU' AND LOWER(Omic_type) LIKE "%spinalcord eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.405 | Q55 | Based on Hippocampus eQTL data, what is the top SNP in MGC57346 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | MGC57346 has no SNPs significantly associated with Progressive supranuclear palsy in the Hippocampus eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'MGC57346' AND LOWER(Omic_type) LIKE "%hippocampus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.517 | Q55 | Based on Amygdala eQTL data, what is the top SNP in CRHR1 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | CRHR1 has no SNPs significantly associated with Alzheimer's Disease in the Amygdala eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'CRHR1' AND LOWER(Omic_type) LIKE "%amygdala eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.324 | Q55 | Based on Hypothalamus eQTL data, what is the top SNP in KANSL1 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | KANSL1 has no SNPs significantly associated with Alzheimer's Disease in the Hypothalamus eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'KANSL1' AND LOWER(Omic_type) LIKE "%hypothalamus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIM... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.20 | Q55 | Based on Liver eQTL data, what is the top SNP in MS4A2 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | MS4A2 has no SNPs significantly associated with Parkinson's Disease in the Liver eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'MS4A2' AND LOWER(Omic_type) LIKE "%liver eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.691 | Q55 | Based on Cerebellum eQTL data, what is the top SNP in TRIM40 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | TRIM40 has no SNPs significantly associated with Parkinson's Disease in the Cerebellum eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'TRIM40' AND LOWER(Omic_type) LIKE "%cerebellum eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.36 | Q55 | Based on Cortex eQTL GTEx data, what is the top SNP in PILRB that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | PILRB has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Cortex eQTL GTEx. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'PILRB' AND LOWER(Omic_type) LIKE "%cortex eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.910 | Q55 | Based on Cortex eQTL GTEx data, what is the top SNP in NSFP1 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | NSFP1 has no SNPs significantly associated with Alzheimer's Disease in the Cortex eQTL GTEx. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'NSFP1' AND LOWER(Omic_type) LIKE "%cortex eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.834 | Q55 | Based on Liver eQTL data, what is the top SNP in FAM215B that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | FAM215B has no SNPs significantly associated with Progressive supranuclear palsy in the Liver eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'FAM215B' AND LOWER(Omic_type) LIKE "%liver eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT 1 | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1798 | Q55 | Based on Multi Ancestry Whole Brain Meta-analysis eQTL data, what is the top SNP in SCFD1 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | SCFD1 has no SNPs significantly associated with Lewy Body Dementia in the Multi Ancestry Whole Brain Meta-analysis eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'SCFD1' AND LOWER(Omic_type) LIKE "%multi ancestry whole brain meta-analysis eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.0... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.413 | Q55 | Based on Cortex eQTL metaBrain data, what is the top SNP in HIP1R that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | HIP1R has no SNPs significantly associated with Lewy Body Dementia in the Cortex eQTL metaBrain. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'HIP1R' AND LOWER(Omic_type) LIKE "%cortex eqtl metabrain%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.928 | Q55 | Based on Hippocampus eQTL data, what is the top SNP in KLHL7-AS1 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | KLHL7-AS1 has no SNPs significantly associated with Alzheimer's Disease in the Hippocampus eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'KLHL7-AS1' AND LOWER(Omic_type) LIKE "%hippocampus eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
L... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.543 | Q55 | Based on Putamen Basal Ganglia eQTL data, what is the top SNP in MAT1A that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | MAT1A has no SNPs significantly associated with Progressive supranuclear palsy in the Putamen Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'MAT1A' AND LOWER(Omic_type) LIKE "%putamen basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_m... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.765 | Q55 | Based on Whole Blood eQTL eQTLgen data, what is the top SNP in RP11-259G18.1 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | RP11-259G18.1's most significantly associated SNP with Alzheimer's Disease in the Whole Blood eQTL eQTLgen is rs2532233, with adjusted SMR multi-SNP P-value of 1.33e-07 and a HEIDI value of 1.3860e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'RP11-259G18.1' AND LOWER(Omic_type) LIKE "%whole blood eqtl eqtlgen%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_... | [{'UUID': 'NDD_SMR_genes_all_update_text_1502452', 'topRSID': 'rs2532233', 'Disease': 'AD', 'Gene': 'RP11-259G18.1', 'p_SMR_multi': 1.328465e-07, 'p_HEIDI': 0.1385957, 'Omic_tissue': 'Whole Blood', 'Omic_type': 'Whole Blood eQTL eQTLgen'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1905 | Q55 | Based on Whole Brain meta-analysis mQTL data, what is the top SNP in MS4A4A that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | MS4A4A has no SNPs significantly associated with Alzheimer's Disease in the Whole Brain meta-analysis mQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'MS4A4A' AND LOWER(Omic_type) LIKE "%whole brain meta-analysis mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_S... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1071 | Q55 | Based on Tibial Nerve eQTL data, what is the top SNP in LRRC37A that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | LRRC37A's most significantly associated SNP with Alzheimer's Disease in the Tibial Nerve eQTL is rs7225002, with adjusted SMR multi-SNP P-value of 2.39e-07 and a HEIDI value of 4.4649e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'LRRC37A' AND LOWER(Omic_type) LIKE "%tibial nerve eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LI... | [{'UUID': 'NDD_SMR_genes_all_update_text_1291766', 'topRSID': 'rs7225002', 'Disease': 'AD', 'Gene': 'LRRC37A', 'p_SMR_multi': 2.387945e-07, 'p_HEIDI': 0.4464903, 'Omic_tissue': 'Tibial Nerve', 'Omic_type': 'Tibial Nerve eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1209 | Q55 | Based on Putamen Basal Ganglia eQTL data, what is the top SNP in HS3ST1 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | HS3ST1 has no SNPs significantly associated with Parkinson's Disease in the Putamen Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'HS3ST1' AND LOWER(Omic_type) LIKE "%putamen basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_m... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.248 | Q55 | Based on Whole Brain meta-analysis mQTL data, what is the top SNP in PVRIG that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | PVRIG has no SNPs significantly associated with Alzheimer's Disease in the Whole Brain meta-analysis mQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'PVRIG' AND LOWER(Omic_type) LIKE "%whole brain meta-analysis mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SM... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1431 | Q55 | Based on Prefrontal Cortex eQTL data, what is the top SNP in IGHV4-61 that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | IGHV4-61 has no SNPs significantly associated with Parkinson's Disease in the Prefrontal Cortex eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'IGHV4-61' AND LOWER(Omic_type) LIKE "%prefrontal cortex eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mul... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1137 | Q55 | Based on Putamen Basal Ganglia eQTL data, what is the top SNP in CKM that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | CKM has no SNPs significantly associated with Lewy Body Dementia in the Putamen Basal Ganglia eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'CKM' AND LOWER(Omic_type) LIKE "%putamen basal ganglia eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mul... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.791 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in C6orf10 that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | C6orf10 has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Skeletal Muscle eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'C6orf10' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1744 | Q55 | Based on Tibial Nerve eQTL data, what is the top SNP in INO80E that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | INO80E's most significantly associated SNP with Alzheimer's Disease in the Tibial Nerve eQTL is rs4787491, with adjusted SMR multi-SNP P-value of 8.37e-08 and a HEIDI value of 1.4418e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'INO80E' AND LOWER(Omic_type) LIKE "%tibial nerve eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIM... | [{'UUID': 'NDD_SMR_genes_all_update_text_1291219', 'topRSID': 'rs4787491', 'Disease': 'AD', 'Gene': 'INO80E', 'p_SMR_multi': 8.367231e-08, 'p_HEIDI': 0.1441841, 'Omic_tissue': 'Tibial Nerve', 'Omic_type': 'Tibial Nerve eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.495 | Q55 | Based on Whole Blood eQTL GTEx data, what is the top SNP in AP001257.1 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | AP001257.1 has no SNPs significantly associated with Alzheimer's Disease in the Whole Blood eQTL GTEx. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'AP001257.1' AND LOWER(Omic_type) LIKE "%whole blood eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mu... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.157 | Q55 | Based on Cortex eQTL metaBrain data, what is the top SNP in TREM2 that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | TREM2's most significantly associated SNP with Alzheimer's Disease in the Cortex eQTL metaBrain is rs9394778, with adjusted SMR multi-SNP P-value of 6.31e-07 and a HEIDI value of 7.0327e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'TREM2' AND LOWER(Omic_type) LIKE "%cortex eqtl metabrain%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [{'UUID': 'NDD_SMR_genes_all_update_text_1109138', 'topRSID': 'rs9394778', 'Disease': 'AD', 'Gene': 'TREM2', 'p_SMR_multi': 6.308333e-07, 'p_HEIDI': 0.7032683, 'Omic_tissue': 'Cortex', 'Omic_type': 'Cortex eQTL metaBrain'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.970 | Q55 | Based on Whole Brain meta-analysis mQTL data, what is the top SNP in MS4A2 that is associated with Progressive supranuclear palsy, and what is its adjusted SMR p-value? | MS4A2 has no SNPs significantly associated with Progressive supranuclear palsy in the Whole Brain meta-analysis mQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PSP' AND Gene = 'MS4A2' AND LOWER(Omic_type) LIKE "%whole brain meta-analysis mqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_S... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.860 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in FBXL19 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | FBXL19 has no SNPs significantly associated with Alzheimer's Disease in the Skeletal Muscle eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'FBXL19' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1325 | Q55 | Based on Anterior Cingulate Cortex BA24 eQTL data, what is the top SNP in RP11-333E1.1 that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | RP11-333E1.1 has no SNPs significantly associated with Lewy Body Dementia in the Anterior Cingulate Cortex BA24 eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'RP11-333E1.1' AND LOWER(Omic_type) LIKE "%anterior cingulate cortex ba24 eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.632 | Q55 | Based on Skeletal Muscle eQTL data, what is the top SNP in MS4A4A that is associated with Parkinson's Disease, and what is its adjusted SMR p-value? | MS4A4A has no SNPs significantly associated with Parkinson's Disease in the Skeletal Muscle eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'PD' AND Gene = 'MS4A4A' AND LOWER(Omic_type) LIKE "%skeletal muscle eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.692 | Q55 | Based on Cortex eQTL GTEx data, what is the top SNP in PVRIG that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | PVRIG's most significantly associated SNP with Alzheimer's Disease in the Cortex eQTL GTEx is rs7811662, with adjusted SMR multi-SNP P-value of 4.11e-07 and a HEIDI value of 2.1941e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'PVRIG' AND LOWER(Omic_type) LIKE "%cortex eqtl gtex%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMIT... | [{'UUID': 'NDD_SMR_genes_all_update_text_1245519', 'topRSID': 'rs7811662', 'Disease': 'AD', 'Gene': 'PVRIG', 'p_SMR_multi': 4.107899e-07, 'p_HEIDI': 0.02194134, 'Omic_tissue': 'Cortex', 'Omic_type': 'Cortex eQTL GTEx'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1562 | Q55 | Based on Cerebellum eQTL data, what is the top SNP in INPP5D that is associated with Lewy Body Dementia, and what is its adjusted SMR p-value? | INPP5D has no SNPs significantly associated with Lewy Body Dementia in the Cerebellum eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'LBD' AND Gene = 'INPP5D' AND LOWER(Omic_type) LIKE "%cerebellum eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIMI... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.575 | Q55 | Based on Prefrontal Cortex eQTL data, what is the top SNP in LRRC37A4P that is associated with Alzheimer's Disease (AD), and what is its adjusted SMR p-value? | LRRC37A4P's most significantly associated SNP with Alzheimer's Disease in the Prefrontal Cortex eQTL is rs2532276, with adjusted SMR multi-SNP P-value of 7.82e-07 and a HEIDI value of 2.7052e-02. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'LRRC37A4P' AND LOWER(Omic_type) LIKE "%prefrontal cortex eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mu... | [{'UUID': 'NDD_SMR_genes_all_update_text_1202998', 'topRSID': 'rs2532276', 'Disease': 'AD', 'Gene': 'LRRC37A4P', 'p_SMR_multi': 7.822735e-07, 'p_HEIDI': 0.02705218, 'Omic_tissue': 'Prefrontal Cortex', 'Omic_type': 'Prefrontal Cortex eQTL'}] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.1909 | Q55 | Based on Whole Brain eQTL data, what is the top SNP in TUBB8P7 that is associated with Alzheimer's Disease, and what is its adjusted SMR p-value? | TUBB8P7 has no SNPs significantly associated with Alzheimer's Disease in the Whole Brain eQTL. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'AD' AND Gene = 'TUBB8P7' AND LOWER(Omic_type) LIKE "%whole brain eqtl%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_multi
LIM... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.18 | Q55 | Based on Whole Blood eQTL eQTLgen data, what is the top SNP in STX1B that is associated with Amyotrophic Lateral Sclerosis, and what is its adjusted SMR p-value? | STX1B has no SNPs significantly associated with Amyotrophic Lateral Sclerosis in the Whole Blood eQTL eQTLgen. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'ALS' AND Gene = 'STX1B' AND LOWER(Omic_type) LIKE "%whole blood eqtl eqtlgen%" AND p_SMR_multi < 2.95e-6 AND p_HEIDI > 0.01
ORDER BY p_SMR_mul... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Q55.130 | Q55 | Based on Whole Blood eQTL eQTLgen data, what is the top SNP in DCAKD that is associated with Progressive supranuclear palsy (PSP), and what is its adjusted SMR p-value? | DCAKD's most significantly associated SNP with Progressive supranuclear palsy in the Whole Blood eQTL eQTLgen is rs4413004, with adjusted SMR multi-SNP P-value of 3.89e-08 and a HEIDI value of 1.1770e-01. | SELECT UUID, topRSID, Disease, Gene, p_SMR_multi, p_HEIDI, Omic_tissue, Omic_type
FROM `{project_id}.{dataset_name}.NeurodegenerativeDiseases_SMR_Genes_Full`
WHERE Disease = 'Progressive supranuclear palsy (PSP)' AND Gene = 'DCAKD' AND LOWER(Omic_type) LIKE "%whole blood eqtl eqtlgen%" AND p_SMR_multi < 2.95e-6 AND p... | [] | refined | Select, Multi-Filter, Similarity Search, Order By, Threshold | Functional Significance |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.