Get the CHR number and POS using rs id
0
0
Entering edit mode
2.5 years ago
Mahan ▴ 70

I have a list of rs IDs (>1000) and I would like to know how I can get the chromosome number and the position? TIA

SNP id rs Chromosome • 1.2k views
ADD COMMENT
0
Entering edit mode

try dbSNP vcf.

ADD REPLY
0
Entering edit mode

Using Entrezdirect: This will provide location for latest genome release

$ efetch -db snp -id rs555895 | awk -F "<CHRPOS>" '{print $2}' | sed -e 's/\<\/CHRPOS.*//'
10:87961150
$ efetch -db snp -id rs1044322 | awk -F "<CHRPOS>" '{print $2}' | sed -e 's/\<\/CHRPOS.*//'
10:87863566
ADD REPLY
0
Entering edit mode

Thank you ~ can you please suggest, how can I do this for > 1000 SNPs in my list?

ADD REPLY

Login before adding your answer.

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