Import Tax4Fun in R

I am trying to import the R package Tax4Fun_0.3.1.tar.gz into the qiime environment but it seems that R cannot find the package, any ideas on how to fix this?

Late the party but I figured this out today after digging around.

install.packages("pheatmap")
library(pheatmap)

#install qiimer from Index of /src/contrib/Archive/qiimer
library(qiimer)

install.packages("remotes")
library(remotes)

#install biom
library("devtools")
#devtools::install_github("joey711/biom")

#install Tax4Fun using remotes
install.packages(remotes)
#remotes::install_github("nick-youngblut/Tax4Fun")

library(Tax4Fun)

2 Likes