Hi,
I have tried to install tximport, but received the message: "package ‘tximport’ is not available (for R version 3.2.3)".
System data: Ubuntu 16.04.6 LTS, With R version 3.2.3
I have searched in the following 3 but I could not find which R versions can be used with this package (though I might have missed it):
- https://www.rdocumentation.org/packages/tximport/versions/1.0.3/topics/tximport
The DESCRIPTION files in the tximport package I have downloaded from: https://bioc.ism.ac.jp/packages/3.5/bioc/html/tximport.html [from 2017], and from https://bioc.ism.ac.jp/packages/3.4/bioc/html/tximport.html [from 2017]
https://bioconductor.riken.jp/packages/3.4/bioc/manuals/tximport/man/tximport.pdf
Is there a tximport version that is supported by R.3.x or must I install R.4.x? If there is tximport for R.x, which R version exactly? where can I download it from?
Thank you very much,
Airk
Thank you very much Mike!
Do you have any experience with R Vers 4. on Ubuntu 16.04? Our sys admin thinks it may cause some system failure.
I am using R 4.0.2 on Ubuntu Server 16.04. I have no issues to report.
Thank you very much.
DESeq2 gave me some hard time, until I have used suggestion in comment 4 of this link: https://www.biostars.org/p/439453/
The problem here would seem to be that you (or your system administrator) updated R from a version < 4.0.0 to R version 4.0.0 or higher, but the packages installed in the library were not updated.
I would suggest either updating the packages whenever updating R (see https://bioconductor.org/install/#update-bioconductor-packages section 'recompiling installed Bioconductor packages', though actually the
type = "source"
is only required for Linux installations), or (better, from my perspective), having an R-version-specific library where packages are installed (see 'Managing Multiple Versions of R' in https://cran.r-project.org/web/packages/BiocManager/vignettes/BiocManager.html). In either case, updating R requires the effort of updating R itself, and of updating or re-installing packages. This is costly at the time, but saves effort and confusion in the long run.Thank you. I have recompiled all the existing packages pkgs <- rownames(installed.packages()) BiocManager::install(pkgs, type = "source", checkBuilt = TRUE)
Than installed DESeq2. It is working!