An R function for fetching SNP annotations?
1
2
Entering edit mode
9.1 years ago
kindlychung ▴ 60

Is there an R function in any existing package that allows me to do something like:

annotate("rs34121", build = hg19)

and returns either of these:

  • gene name, if the SNP is inside a gene
  • gene1/gene2, if the SNP is between gene1 and gene2 ?
SNP annotation r • 2.4k views
ADD COMMENT
3
Entering edit mode
9.1 years ago
poisonAlien ★ 3.2k
source("http://bioconductor.org/biocLite.R")
biocLite("FDb.UCSC.snp137common.hg19")

snp137 = features(FDb.UCSC.snp137common.hg19)
snp137['rs34121']

It give you the position of rsid, but not sure about gene name.

ADD COMMENT

Login before adding your answer.

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