EDIT: "It is resolved now" Thansk Lluís R. with your advice, I took out the reason for duplication, I was installing rlang 1.1.0 after installing ExomeDepth, so I reversed this by installing rlang 1.1.0 before installing ExomeDepth. Thanks.
I want to install ExomeDepth, these dependencies were not getting installed on its own so I installed it before installing ExomeDepth
install.packages("BiocManager")
BiocManager::install(c("Biostrings", "IRanges", "Rsamtools", "GenomicRanges", "GenomicAlignments"))
These got installed at
The downloaded source packages are in ‘/tmp/RtmpueWuwX/downloaded_packages’
Now I installed ExomeDepth: devtools::install_github("vplagnol/ExomeDepth") . Witjhin this the rlang is shown to install in this:
installing *source* package ‘rlang’ ... installing to /local_disk0/.ephemeral_nfs/envs/rEnv-a66fb82e-9d00-4573-99f2-0ce76799030d/00LOCK-rlang/00new/rlang/libsThen it showed in the end this:
The downloaded source packages are in ‘/tmp/Rtmp7JiAL9/downloaded_packages’ * checking for file ‘/tmp/Rtmp7JiAL9/remotes44847bac8a0/vplagnol-ExomeDepth-d642cbd/DESCRIPTION’ ... OK * preparing ‘ExomeDepth’: * checking DESCRIPTION meta-information ... OK * cleaning src * checking for LF line-endings in source and make files and shell scripts * checking for empty or unneeded directories * looking to see if a ‘data/datalist’ file should be added * building ‘ExomeDepth_1.1.16.tar.gz’Installing package into ‘/local_disk0/.ephemeral_nfs/envs/rEnv-a66fb82e-9d00-4573-99f2-0ce76799030d’ (as ‘lib’ is unspecified)
Now I am installing this:
install.packages("rlang", version="1.1.0")
packageVersion("rlang")
This gives the path
The downloaded source packages are in ‘/tmp/Rtmp7JiAL9/downloaded_packages’
Is the method you mentioned will help out here too?