BiocManager icon indicating copy to clipboard operation
BiocManager copied to clipboard

CRAN Package For Managing Bioconductor Packages

Results 30 BiocManager issues
Sort by recently updated
recently updated
newest added

For all, whom it may concern - I found the solution what to do, if your R is writing something like: ``` > BiocManager::install(version="3.14") Error: Bioconductor version cannot be validated;...

I'm creating this issue to have a place to discuss [CRANhaven](https://www.cranhaven.org/) that I presented to the Bioconductor Technical Advisor Board (TAB) on 2024-03-07. # Background The gist is that CRANhaven...

Submitting the basic installation command for Bioconductor: `if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install(version = "3.18")` in R (version 4.3.0) returns the following error: `Error: Bioconductor version cannot be validated;...

I know of at least two packages that have had to implement this themselves, so it would be useful for BiocManager to provide an exported interface.

Reported via email ```{r} .libPaths(tempfile()) BiocManager::install('phangorn') # installs phangorn ``` So far so good, but ```{r} > BiocManager::install('phangorn', dependencies = TRUE) Bioconductor version 3.17 (BiocManager 1.30.20), R Under development (unstable)...

``` > BiocManager::install("ChIPseeker") 'getOption("repos")' replaces Bioconductor standard repositories, see '?repositories' for details replacement repositories: CRAN: https://cran.rstudio.com/ Bioconductor version 3.16 (BiocManager 1.30.19), R 4.2.2 (2022-10-31) Warning message: package(s) not installed when...

Suppose Package A depends on B depends on C. The user installs A (hence B & C) then removes B. BiocManager::valid() does not detect this situation, because A and C...

# Issue It is not always clear why the following message appear: ```r 'getOption("repos")' replaces Bioconductor standard repositories, see '?repositories' for details replacement repositories: CRAN: https://cloud.r-project.org ``` For instance, it...

When I tried to install PCAtools and CRISPRball (and a little earlier DESeq2) I get the message `Warning message: package ‘XXX’ is not available for Bioconductor version '3.22'`. These packages...