This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Qiime - problem with biom package in normalization

Hi,

I want to use Qiime DESeq2 normalization by command. I need to install "biom" package in R to make it work iut I have this comment:

Warning message: package ‘biom’ is not available (for R version 3.5.0)

What can I do with that? It's the newest R version.

r qiime biom

3 answers

biom package is not supported now. You can download it from here and install it manually using install.packages() cmd in R.

How to do that ?

I typed:

install.packages(biom_0.3.8.tar.gz) Error in install.packages(biom_0.3.8.tar.gz) : object 'biom_0.3.8.tar.gz' not found

I've just got into this issue while installing Tax4Fun and that's how I fixed (R 3.5.3):

Went to the development page on GitHub: https://github.com/joey711/biom Then "made available through Cran" and there "archive". Downloaded the latest version (biom 0.3.12.tar.gz)

Installing:

install.packages("path_to_the_file/biom_0.3.12.tar.gz", repos = NULL, type = "source", dependencies = T) 
#in RStudio Tools->InstallPackages->InstallFromPackageArchive

It still complained about not having the dependency RJSONIO available. Then:

install.packages("RJSONIO")

Then again install.packages("path_to_the_file/biom_0.3.12.tar.gz", repos = NULL, type = "source", dependencies = T) and it worked.

Cheers for future users =)

Log in to answer this question.