Skip to content

Commit

Permalink
Add
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Dec 31, 2024
1 parent a3fb69b commit c8f9b00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion R/monorepos.R
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ metabioc_dummy_registry <- function(){
bioc_version <- yml$devel_version
bioc <- jsonlite::read_json(sprintf('https://bioconductor.org/packages/json/%s/bioc/packages.json', bioc_version))
stopifnot(length(bioc) > 2100)
bioc <- Filter(function(x) !identical(x$PackageStatus, 'Deprecated') && !identical(x$Package, 'zlibbioc'), bioc)
bioc <- Filter(function(x) !identical(x$PackageStatus, 'Deprecated') || identical(x$Package, 'zlibbioc'), bioc)
lapply(setdiff(names(bioc), skiplist), function(x){
baseurl <- ifelse(x %in% nomirror, "https://git.bioconductor.org/packages/", "https://github.com/bioc/")
list(package = x, url = paste0(baseurl, x ))
Expand Down
1 change: 1 addition & 0 deletions sync.Rproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Version: 1.0
ProjectId: fbb41f70-6544-466d-916d-58651bb2b635

RestoreWorkspace: Default
SaveWorkspace: Default
Expand Down

0 comments on commit c8f9b00

Please sign in to comment.