ERROR: dependencies 'impute', 'MassSpecWavelet' are not available for package 'Rnmr1D'
Closed this issue · 2 comments
vitor-mendes-iq commented
Hello, I am Chemistry that work with NMR and I try to install Rnmr1D package but I don't have success.
when I try install by CRAN or gitbub they get same menssagem:
ERROR: dependencies 'impute', 'MassSpecWavelet' are not available for package 'Rnmr1D'.
I am use Windows 10, R (4.0), Rstudio (1.2)
djacob65 commented
Hi Vitor,
As mentioned in the github pages, the packages 'impute' and
'MassSpecWavelet' are not on the CRAN but on bioconductor repository.
So you have to install these packages before installing the Rnmr1D, as
follow :
packages <- c("impute", "MassSpecWavelet","pcaMethods")if
(!requireNamespace('BiocManager', quietly = TRUE))
install.packages('BiocManager', repos='http://cran.rstudio.com/');
BiocManager::install(setdiff(packages, rownames(installed.packages())));
}
See also :
https://www.bioconductor.org/packages/release/bioc/html/impute.html
https://www.bioconductor.org/packages/release/bioc/html/MassSpecWavelet.html
Hope this help you
Best,
Daniel
Le lun. 1 juin 2020 à 19:16, Vitor Mendes de Oliveira <
notifications@github.com> a écrit :
… Hello, I am Chemistry that work with NMR and I try to install Rnmr1D
package but I don't have success.
when I try install by CRAN or gitbub they get same menssagem:
*ERROR: dependencies 'impute', 'MassSpecWavelet' are not available for
package 'Rnmr1D'.*
I am use Windows 10, R (4.0), Rstudio (1.2)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2UCBDTHY6O2JII3W4BKETRUPO6NANCNFSM4NP7WUJA>
.
[image: image.gif]
--
"Carpe diem, memento mori"
vitor-mendes-iq commented
thanks for answer, now I can use the package.