List of conditions a set of genes are associated with in OMIM
1
1
Entering edit mode
4.6 years ago
Floydian_slip ▴ 170

Hi, I have a set of ~150 gene and I want to obtain a list of phenotypes (diseases or conditions) they are associated with. I was wondering what is the way to do this in OMIM in a batch manner. Eg.,

Gene Condition

BRCA1 Breast Cancer

Thanks for your help!

OMIM • 1.6k views
ADD COMMENT
4
Entering edit mode
4.6 years ago
Corentin ▴ 600

If you are willing to use R and biomaRt:

gene_mart <- biomaRt::useEnsembl(biomart = "ENSEMBL_MART_ENSEMBL", 
                                 host = "www.ensembl.org", 
                                 dataset = "hsapiens_gene_ensembl")

biomaRt::getBM(mart = gene_mart,
               attributes = c("hgnc_symbol", "mim_morbid_accession", "mim_morbid_description"),
               filters = "hgnc_symbol",
               values = c("BRCA1"),
               uniqueRows = TRUE)

This will give the following output:

hgnc_symbol mim_morbid_accession    mim_morbid_description
BRCA1               114480     BREAST CANCER;;BREAST CANCER, FAMILIALBREAST CANCER, FAMILIAL MALE, INCLUDED
BRCA1               604370     BREAST-OVARIAN CANCER, FAMILIAL, SUSCEPTIBILITY TO, 1; BROVCA1BREAST CANCER, FAMILIAL, SUSCEPTIBILITY TO, 1, INCLUDED;;OVARIAN CANCER, FAMILIAL, SUSCEPTIBILITY TO, 1, INCLUDED
BRCA1               614320    PANCREATIC CANCER, SUSCEPTIBILITY TO, 4; PNCA4
BRCA1               617883    FANCONI ANEMIA, COMPLEMENTATION GROUP S; FANCS

If you want more than one gene, you just have to write all your hgnc symbols in the values parameter, example with 2 genes:

biomaRt::getBM(mart = gene_mart,
               attributes = c("hgnc_symbol", "mim_morbid_accession", "mim_morbid_description"),
               filters = "hgnc_symbol",
               values = c("BRCA1", "FOXP3"),
               uniqueRows = TRUE)

This script will get the omim IDs and descriptions filtered by hgnc symbols. If you prefer to use ensembl gene IDs you can replace filters = "hgnc_symbol" by filters = "ensembl_gene_id". For more information you can refer to the biomaRt user guide at https://www.bioconductor.org/packages/devel/bioc/vignettes/biomaRt/inst/doc/biomaRt.html

ADD COMMENT
0
Entering edit mode

Thanks Corentin! It worked like a charm.

ADD REPLY
0
Entering edit mode

If an answer was helpful, you should upvote it; if the answer resolved your question, you should mark it as accepted. You can accept more than one if they work.
Upvote|Bookmark|Accept

ADD REPLY

Login before adding your answer.

Traffic: 2550 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6