This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Matchprobes binary packages for R 3.1.3

I try download matchprobes binary packages are in R 3.1.3 version. But it gives,

Warning message:
package 'matchprobes' is not available (as a binary package for R version 3.1.3).

How can I solve this problem?

r software-error

I try download matchprobes binary packages are in R 3.1.3 version for Mac OS 10.8. So, windows solutions not suitable for me.

1 answer

Try to install packages in R by:

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

or

Download the package (".tar.gz"/ ".zip"/ ".tgz") from http://www.bioconductor.org/packages/2.3/bioc/html/matchprobes.html

After downloading, install in R by:

install.packages("/path/of/downloaded/file//matchprobes_1.14.1.tgz", repos = NULL)

or, try from github. See this link, to install packages from github

http://stackoverflow.com/questions/9656016/how-to-install-development-version-of-r-packages-github-repository

I tried this process. But it gives warning message:

Installing package into ‘/Users/gtatar/Library/R/3.1/library’
(as ‘lib’ is unspecified)

Log in to answer this question.