Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version update issues #679

Closed
ekarlsenayala opened this issue Feb 14, 2019 · 4 comments
Closed

version update issues #679

ekarlsenayala opened this issue Feb 14, 2019 · 4 comments

Comments

@ekarlsenayala
Copy link

I am unable to get dada2 to install in the terminal. I've tried nearly every way to install it and its not working. The latest thing I tried was

conda install bioconductor-dada2

It downloaded dada2 but not the v1.3.3

I've also tried
source("http://bioconductor.org/biocLite.R")
biocLite(suppressUpdates = FALSE)

which gives me the following error message:
1: In install.packages(update[instlib == l, "Package"], l, contriburl = contriburl, :
installation of package ‘igraph’ had non-zero exit status
2: In install.packages(update[instlib == l, "Package"], l, contriburl = contriburl, :
installation of package ‘stringi’ had non-zero exit status

Let me know if there is a better way to try to download the newest version of dada2

@benjjneb
Copy link
Owner

Have you looked at the dada2 installation page? https://benjjneb.github.io/dada2/dada-installation.html

For the current version:

To install this package, start R (version "3.5") and enter:

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("dada2", version = "3.8")

You can see more here: https://www.bioconductor.org/packages/release/bioc/html/dada2.html

An alternative is to install from GitHub:

library(devtools)
devtools::install_github("benjjneb/dada2", ref="v1.10")

@ekarlsenayala
Copy link
Author

ekarlsenayala commented Feb 14, 2019 via email

@benjjneb
Copy link
Owner

Do you just get warnings, or does the installation fail? What happens when you try library("dada2")?

Also, can you provide info on your R installation: R.version

@wlokhorst
Copy link

I encountered the same error message for the stringi package when installing the latest version of dada2.

However, I also found that this is an issue for more people trying to install stringi (gagolews/stringi#431).
It was recently patched, so stringi can now be installed via calling the following command from within R:
devtools::install_github("gagolews/stringi")
Source: gagolews/stringi#431 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants