slowkow / proxysnps

:bookmark: Get SNP proxies from the 1000 Genomes Project.
MIT License
28 stars 9 forks source link

error : no package called 'myvariant' #6

Open robinc3 opened 6 years ago

robinc3 commented 6 years ago

Hi,

I'm getting the following error, using proxysnps in R studio:

d <- get_proxies(query="rs17216707")
#> Error in loadNamespace(name) : there is no package called ‘myvariant’

Any thoughts?

Thank you!

Cassy

slowkow commented 6 years ago

Hi Cassy,

Thanks for point this out. The dependency on the myvariant isn't specified properly.

Try this:

source("https://bioconductor.org/biocLite.R")
biocLite("myvariant")

Let me know if you run into any other issues!