freestatman / ideogRam

R htmlwidget package for ideogram.js
https://freestatman.github.io/ideogRam/
16 stars 4 forks source link

`GenomicRanges` is not available (for R version 3.4.1) #10

Closed mtwichan closed 6 years ago

mtwichan commented 6 years ago

The issue is that the GenomicRanges package may be depreciated? I noticed R (>= 3.3.1) in the dependencies, and tested out versions 3.31, 3.41, and 3.51.

Marlin-Na commented 6 years ago

Hi, thanks for trying out.

The GenomicRanges package is a Bioconductor package and is not on CRAN. Instead of using install.packages, you may install it with

source("https://bioconductor.org/biocLite.R")
biocLite("GenomicRanges")
mtwichan commented 6 years ago

Awesome thank you!