-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Figure out some interesting example SQL queries #1
Comments
Thanks to help from Dr. Laura Cantino at Science Hack Day San Francisco I've been able to pull together this query: select rsid, genotype, case genotype
when 'AA' then 'brown eye color, 80% of the time'
when 'AG' then 'brown eye color'
when 'GG' then 'blue eye color, 99% of the time'
end as interpretation from genome where rsid = 'rs12913832' See also https://www.snpedia.com/index.php/Rs12913832 - in particular this table: |
Risk of autoimmune disorders: https://www.snpedia.com/index.php/Genotype
|
The "Warrior Gene" https://www.snpedia.com/index.php/Rs4680
|
rs7903146 Influences risk of Type-2 diabetes
|
Both rs10757274 and rs2383206 can both indicate higher risks of heart disease
|
rs53576: the oxytocin receptor (OXTR) gene
|
rs1333049 associated with coronary artery disease
|
RS1800955 is related to novelty seeking and ADHD
|
My knowledge of genetics has left me short here. I'd love to be able to provide some interesting example SELECT queries - maybe one that spots if you are likely to have red hair?
The text was updated successfully, but these errors were encountered: