This is a test version of Biostars. For the public version, visit https://www.biostars.org.
why I can't find my pachage?

sorry guys,

I typed

source("<a href="http://bioconductor.org/biocLite.R">http://bioconductor.org/biocLite.R</a>")
biocLite("cummeRbund")

after running

install.packages("cummerbund")
Installing package into '/usr/people/home/izadi/R/x86_64-redhat-linux-gnu-library/3.2'
(as 'lib' is unspecified)
Warning in install.packages :
  package 'cummerbund' is not available (for R version 3.2.1)

I'm in rstudio, fedora 64 bit

Do you know the reason please? how I can install this package?

Thanks

software-error cummerbund rna-seq

biocLite("cummeRbund") should already install the package. Whats the output of biocLite("cummeRbund")?

1 answer

It seems you trying to install it twice (and the second time using the wrong command and package name). The first two lines you say you used:

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

should already install cummeRbund, provided all dependencies are met. Then install.packages("cummerbund") will try to install it again, looking at the wrong repositories and with the wrong name.

To load a package after you install it:

library("cummeRbund")

Log in to answer this question.