This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to install preprocessCore package in Rstudio?

Hi everyOne, I am new to RNA-seq data anlaysis. Now I stuck with quantile normalization process. I need to know How can i install preprocessCore package in rstudio? I want to do Quantile normalization.

I tried to install the package externally. I have downloaded the package and I tried to install.But am getting this Error.

collect2: error: ld returned 1 exit status
/usr/share/R/share/make/shlib.mk:6: recipe for target 'preprocessCore.so' failed
make: *** [preprocessCore.so] Error 1
ERROR: compilation failed for package ‘preprocessCore’
* removing ‘/home/bif-workstation/R/x86_64-pc-linux-gnu-library/3.2/preprocessCore’
Warning in install.packages :
  installation of package ‘/home/bif-workstation/Downloads/preprocessCore_1.40.0.tar.gz’ had non-zero exit status
r rna-seq sequence

I tried to install the package externally. I have downloaded the package and I tried to install.But am getting this Error.

collect2: error: ld returned 1 exit status

/usr/share/R/share/make/shlib.mk:6: recipe for target 'preprocessCore.so' failed

make: * [preprocessCore.so] Error 1

ERROR: compilation failed for package ‘preprocessCore’

  • removing ‘/home/bif-workstation/R/x86_64-pc-linux-gnu-library/3.2/preprocessCore’ Warning in install.packages :

    installation of package ‘/home/bif-workstation/Downloads/preprocessCore_1.40.0.tar.gz’ had non-zero exit status

1 answer

Try installing it with bioconductor biocLite

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

biocLite("preprocessCore")

Log in to answer this question.