Skip to content
Prev 16680 / 21312 Next

[Bioc-devel] GenomicFeatures and/or TxDb.Hsapiens.UCSC.hg19.knownGene issue: missing tibble

Hi again,

as for getting the immediate dependencies, this is what remotes does internally (it includes also recommended packages though):

deps <- remotes::local_package_deps(pkgdir = ".", dependencies = TRUE)
For my small example package, deps (as created with your code below) was just TxDb.Hsapiens.UCSC.hg19.knownGene.
I?m going to agree with this :) just to try to get a bit further, I went through the code of remotes, and in the end it comes down to calling install.packages() with a certain list of packages, and a specified set of repos (e.g. https://github.com/r-lib/remotes/blob/5b3da5f852772159cc2a580888e10536a43e9199/R/install.R#L75 <https://github.com/r-lib/remotes/blob/5b3da5f852772159cc2a580888e10536a43e9199/R/install.R#L75>). So I tried to just install some packages with install.packages(), in an empty library, to see what would happen. Experiments are here (not very easily accessible, I admit, but still) if someone is interested: https://github.com/csoneson/testinstall/actions <https://github.com/csoneson/testinstall/actions> 

Long story short, this works fine:
This doesn?t (tries to install annotation packages before GenomeInfoDbData):
With other combinations of packages, sometimes it works, sometimes not. 

At the same time, this works fine:
And one more observation which may or may not be related: locally, this fails for me:
while this works:
Charlotte