I tried this process. But it gives warning message:
Installing package into ‘/Users/gtatar/Library/R/3.1/library’
(as ‘lib’ is unspecified)
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?
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
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.
This is off topic. Looks at similar problems on SO:
Solution:
source("http://bioconductor.org/biocLite.R") biocLite("matchprobes")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.