hello, today I failed to installed methylkit package.
install.packages("methylKit_0.9.2.tar.gz",repos=NULL,type="source")
- installing source package 'methylKit' ... * R * data * exec * inst ** preparing package for lazy loading
Error : objects 'DataFrame', 'Rle', 'elementMetadata', 'elementMetadata<-' are not exported by 'namespace:IRanges' ERROR: lazy loading failed for package 'methylKit'
- removing 'C:/Program Files/R/R-3.2.5/library/methylKit'
- restoring previous 'C:/Program Files/R/R-3.2.5/library/methylKit' Warning messages:
1: running command '"C:/PROGRA~1/R/R-32~1.5/bin/i386/R" CMD INSTALL -l "C:\Program Files\R\R-3.2.5\library" "methylKit_0.9.2.tar.gz"' had status 1
2: In install.packages("methylKit_0.9.2.tar.gz", repos = NULL, type = "source") : installation of package ‘methylKit_0.9.2.tar.gz’ had non-zero exit status
unlink("methylKit_0.9.2.tar.gz")
library("methylkit")
Error in library("methylkit") : there is no package called ‘methylkit’
The methods of install packages were:
install.packages( c("data.table","devtools")) source("http://bioconductor.org/biocLite.R") biocLite(c("GenomicRanges","IRanges")) library(devtools) install_github("al2na/methylKit",build_vignettes=FALSE) download.file("http://methylkit.googlecode.com/files/methylKit_0.9.2.tar.gz",destfile="methylKit_0.9.2.tar.gz") install.packages("methylKit_0.9.2.tar.gz",repos=NULL,type="source") unlink("methylKit_0.9.2.tar.gz")
I dont know which function is wrong. Could you help me in solving it?
Thank you, I try it.