You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
The text was updated successfully, but these errors were encountered:
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:
The current work around for this issue is to install the Bioconductor packages separately, as demonstrated below.
IsolateR will then successfully install and can be called like normal with
library(isolateR)
.The text was updated successfully, but these errors were encountered: