Map rs to gene symbol in python script
1
0
Entering edit mode
6.9 years ago

I have snp ids (rs18008665, rs3212227...) Now, I want to map these snp ids to gene symbols using Python script. I have found similar post, but as I have recently started to learn programing and with no bioinformatics knowledge, I´m unable to create the python script which works. Any script example to use?

SNP python script gene • 1.8k views
ADD COMMENT
0
Entering edit mode

look at this post: Get gene names from rs SNP ids

ADD REPLY
1
Entering edit mode
6.9 years ago

using bash

$ wget  -O  - "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=snp&id=rs18008665&retmode=xml"  |\
xmllint --format --xpath  '//*[name(.)="FxnSet"]/@symbol' - |\
tr " " "\n" | sort | uniq | cut -d '"' -f 2
ADD COMMENT
0
Entering edit mode

Thank you Pierre. Easy to understand and concise solution, great help

ADD REPLY

Login before adding your answer.

Traffic: 2542 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