This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Is it impossible to install geneplotter in R version 3.3.2

Hi, I tried to install geneplotter in R version 3.3.2 by
1) geneplotter_1.52.0.tar.gz
but shown insufficient memory
2)## try http:// if https:// URLs are not supported
source("https://bioc.ism.ac.jp/biocLite.R")
biocLite("geneplotter")
3)install.packages("geneplotter")
but shown not available for R version 3.3.2
Can you please help to sort it out........

r

What was the result of bioconductor command?

That error message is because OP tried to install directly from CRAN in 3)

1 answer

Try only this:

source("http://bioconductor.org/biocLite.R")
biocLite("geneplotter")

and post the error message if it doesn't work

Log in to answer this question.