This is a test version of Biostars. For the public version, visit https://www.biostars.org.
What Phenotype databases do you recommend for searching genes related to diseases?

Good afternoon I'd like to make a collection of genes related to a disease (say, leprosy), based on databases. So far I have been using:

Is there other database would you recommend? Thank you in advance for your attention.

disease phenotype databases

2 answers

Okay. I think you'll like this alot. I downloaded this gene-disease pathway association database file from here: http://ctdbase.org/reports/CTD_genes_diseases.csv.gz

Here is the link so you can explore: http://ctdbase.org/downloads/#gd

I found 1918 unique genes related to Leprosy by doing the following in bash:

grep Leprosy '~/CTD_genes_diseases.csv' | cut -d ',' -f1 | sort | uniq
grep Leprosy '~/CTD_genes_diseases.csv' | cut -d ',' -f1 | sort | uniq | wc -l
1918

Good luck!

Thank you so much, this database has much more than the others combined!

In addition to (aforementioned) CTD and DisGeNET, there's also:

Log in to answer this question.