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

Error installing isolateR in R 4.4.0 on Windows 10 and 11 #7

Open
vancurens opened this issue May 21, 2024 · 0 comments
Open

Error installing isolateR in R 4.4.0 on Windows 10 and 11 #7

vancurens opened this issue May 21, 2024 · 0 comments

Comments

@vancurens
Copy link
Collaborator

When running the install command in a new R environment on Windows systems it has been noted that Bioconductor dependencies fail to install, resulting in a failed isolateR installation:

Installing package into ‘C:/Users/cambr/AppData/Local/R/win-library/4.4’
(as ‘lib’ is unspecified)
ERROR: dependencies 'Biostrings', 'msa', 'sangeranalyseR', 'sangerseqR' are not available for package 'isolateR'
* removing 'C:/Users/cambr/AppData/Local/R/win-library/4.4/isolateR'
Warning messages:
1: In i.p(...) :
  installation of package ‘sangerseqR’ had non-zero exit status
2: In i.p(...) :
  installation of package ‘GenomeInfoDb’ had non-zero exit status
3: In i.p(...) :
  installation of package ‘sangeranalyseR’ had non-zero exit status
4: In i.p(...) :
  installation of package ‘C:/Users/cambr/AppData/Local/Temp/RtmpUjesIT/file8dc715e6ae2/isolateR_0.0.0.9003.tar.gz’ had non-zero exit status

The current work around for this issue is to install the Bioconductor packages separately, as demonstrated below.

BiocManager::install("sangerseqR", force =TRUE)
BiocManager::install("GenomeInfoDb", force =TRUE)
BiocManager::install("sangeranalyseR", force =TRUE)
BiocManager::install("msa", force =TRUE)
devtools::install_github("bdaisley/isolateR")

IsolateR will then successfully install and can be called like normal with library(isolateR).

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

1 participant