rstudio / plumber

Turn your R code into a web API.
https://www.rplumber.io
Other
1.4k stars 256 forks source link

Plumber 1.1 fails when using `BiocGenerics` #807

Closed blairj09 closed 3 years ago

blairj09 commented 3 years ago

System details

Output of sessioninfo::session_info()():

─ Session info ─────────────────────────────────────────────────────────────────────────────────────────────────
 setting  value                       
 version  R version 4.1.0 (2021-05-18)
 os       macOS Big Sur 11.3.1        
 system   x86_64, darwin17.0          
 ui       RStudio                     
 language (EN)                        
 collate  en_US.UTF-8                 
 ctype    en_US.UTF-8                 
 tz       America/Denver              
 date     2021-05-25                  

─ Packages ─────────────────────────────────────────────────────────────────────────────────────────────────────
 ! package      * version date       lib source        
   BiocGenerics * 0.38.0  2021-05-19 [1] Bioconductor  
 P BiocManager    1.30.15 2021-05-11 [?] CRAN (R 4.1.0)
 P cli            2.5.0   2021-04-26 [?] CRAN (R 4.1.0)
 P ellipsis       0.3.2   2021-04-29 [?] CRAN (R 4.1.0)
 P httpuv         1.6.1   2021-05-07 [?] CRAN (R 4.1.0)
 P jsonlite       1.7.2   2020-12-09 [?] CRAN (R 4.1.0)
 P later          1.2.0   2021-04-23 [?] CRAN (R 4.1.0)
 P lifecycle      1.0.0   2021-02-15 [?] CRAN (R 4.1.0)
 P magrittr       2.0.1   2020-11-17 [?] CRAN (R 4.1.0)
 P plumber      * 1.1.0   2021-03-24 [?] CRAN (R 4.1.0)
 P promises       1.2.0.1 2021-02-11 [?] CRAN (R 4.1.0)
 P R6             2.5.0   2020-10-28 [?] CRAN (R 4.1.0)
 P Rcpp           1.0.6   2021-01-15 [?] CRAN (R 4.1.0)
   renv           0.13.2  2021-03-30 [1] CRAN (R 4.1.0)
 P rlang          0.4.11  2021-04-30 [?] CRAN (R 4.1.0)
 P sessioninfo    1.1.1   2018-11-05 [?] CRAN (R 4.1.0)
 P stringi        1.6.2   2021-05-17 [?] CRAN (R 4.1.0)
 P swagger        3.33.1  2020-10-02 [?] CRAN (R 4.1.0)
 P webutils       1.1     2020-04-28 [?] CRAN (R 4.1.0)
 P withr          2.4.2   2021-04-18 [?] CRAN (R 4.1.0)

[1] /Users/jamesblair/Documents/RStudio/bugs/plumber-bioconductor/renv/library/R-4.1/x86_64-apple-darwin17.0
[2] /private/var/folders/d_/_k539mwd3xsg0chwvt782vzm0000gn/T/RtmpcDTrL7/renv-system-library

 P ── Loaded and on-disk path mismatch.

Reprex

Install BiocGenerics: `BiocManager::install("BiocGenerics")

library(BiocGenerics)
library(plumber)

#* @apiTitle Plumber Example API

#* Echo back the input
#* @param msg The message to echo
#* @get /echo
function(msg = "") {
    list(msg = paste0("The message is: '", msg, "'"))
}

When running the file defined above, the following error is returned:

Error in nchar(ctype) : 
  cannot coerce type 'closure' to vector of type 'character'

This may very well be a side effect from the following message returned when BiocGenerics is loaded:

Attaching package: ‘BiocGenerics’

The following objects are masked from ‘package:parallel’:

    clusterApply, clusterApplyLB, clusterCall, clusterEvalQ, clusterExport, clusterMap, parApply,
    parCapply, parLapply, parLapplyLB, parRapply, parSapply, parSapplyLB

The following objects are masked from ‘package:stats’:

    IQR, mad, sd, var, xtabs

The following objects are masked from ‘package:base’:

    anyDuplicated, append, as.data.frame, basename, cbind, colnames, dirname, do.call, duplicated,
    eval, evalq, Filter, Find, get, grep, grepl, intersect, is.unsorted, lapply, Map, mapply, match,
    mget, order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank, rbind, Reduce, rownames,
    sapply, setdiff, sort, table, tapply, union, unique, unsplit, which.max, which.min

It's been indicated that this wasn't an issue with Plumber 1.0, but I have not been able to confirm that firsthand.

meztez commented 3 years ago

Welps, It works on Windows 10 when using the Run API button from within RStudio (with RStudio Preview edition)... weird.

Also tested on Debian and had no issue.

I do not have access to a mac to replicate the problem. I'm sorry.

schloerke commented 3 years ago

I could not reproduce an error on macOS 4.0.2. (Worked for me.)

Terminal output ``` > R ❯❯ BiocManager::install("BiocGenerics") Bioconductor version 3.11 (BiocManager 1.30.10), R 4.0.2 (2020-06-22) Installing package(s) 'BiocGenerics' trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/BiocGenerics_0.34.0.tgz' Content type 'application/x-gzip' length 645159 bytes (630 KB) ================================================== downloaded 630 KB The downloaded binary packages are in /var/folders/0k/bxg5lhr92sq74mb1d446ql540000gp/T//Rtmpol756e/downloaded_packages Old packages: 'analogsea', 'AnnotationHub', 'antaresViz', 'ape', 'arules', 'av', 'bayesplot', 'betareg', 'biclust', 'BiocFileCache', 'BiocManager', 'biomaRt', 'BioNetStat', 'bitops', 'blogdown', 'bookdown', 'boot', 'bridgesampling', 'brio', 'brms', 'broom', 'broom.helpers', 'C50', 'cachem', 'caret', 'caTools', 'circlize', 'class', 'cli', 'clue', 'cluster', 'clusterProfiler', 'clustMixType', 'coin', 'colorspace', 'ComplexHeatmap', 'compositions', 'config', 'corrplot', 'cowplot', 'crul', 'Cubist', 'DBI', 'dbplyr', 'DelayedArray', 'DelayedMatrixStats', 'deldir', 'dendextend', 'DEoptimR', 'Deriv', 'devtools', 'dfidx', 'diptest', 'doBy', 'dotCall64', 'downlit', 'dplyr', 'DT', 'e1071', 'edgeR', 'effectsize', 'emmeans', 'epiR', 'esquisse', 'exactRankTests', 'ExperimentHub', 'expm', 'fansi', 'fields', 'fixest', 'foghorn', 'forecast', 'formatR', 'formattable', 'freetypeharfbuzz', 'furrr', 'future.apply', 'future.callr', 'GA', 'gamlss', 'gamlss.data', 'gamlss.dist', 'gargle', 'geepack', 'GenomeInfoDb', 'GenomicFeatures', 'geojsonio', 'gert', 'GGally', 'ggplotify', 'ggraph', 'ggrepel', 'ggridges', 'ggsignif', 'ggthemes', 'gh', 'git2r', 'glmnet', 'glmnetUtils', 'gmm', 'gmp', 'GO.db', 'GOSemSim', 'gstat', 'gt', 'gtsummary', 'haven', 'HDF5Array', 'heatmaply', 'hms', 'htmlTable', 'httpuv', 'huxtable', 'inline', 'interactiveDisplayBase', 'inum', 'ipred', 'IRdisplay', 'joineRML', 'jqr', 'keras', 'KernSmooth', 'ks', 'labelled', 'Lahman', 'lattice', 'lava', 'lavaan', 'leaflet.minicharts', 'lfe', 'libcoin', 'limma', 'lme4', 'loon', 'loon.ggplot', 'lubridate', 'lwgeom', 'maftools', 'magick', 'maptools', 'margins', 'MASS', 'mathjaxr', 'Matrix', 'MatrixModels', 'matrixStats', 'maxLik', 'mclogit', 'memoise', 'mgcv', 'mlbench', 'modeltests', 'mondate', 'muhaz', 'multcomp', 'naniar', 'nnet', 'nycflights13', 'odbc', 'officer', 'openssl', 'org.Hs.eg.db', 'packrat', 'paletteer', 'palr', 'pals', 'parallelly', 'parsedate', 'partitions', 'party', 'partykit', 'pbkrtest', 'PBSmapping', 'pcaPP', 'pdftools', 'pegas', 'performance', 'phangorn', 'pillar', 'pixmap', 'pkgcache', 'pkgcond', 'pkgdepends', 'pkgKitten', 'plm', 'plotrix', 'plumberDeploy', 'pool', 'prettydoc', 'prismatic', 'pROC', 'processx', 'prompt', 'psych', 'psychTools', 'quantreg', 'R.cache', 'radiant.model', 'rapidoc', 'raster', 'rbibutils', 'RcppArmadillo', 'RcppDate', 'RcppParallel', 'RCurl', 'Rdpack', 'reactR', 'recipes', 'redoc', 'renv', 'repr', 'reprex', 'RestRserve', 'reticulate', 'rgdal', 'rgl', 'rhdf5', 'Rhdf5lib', 'rio', 'riverplot', 'rJava', 'RMariaDB', 'RMySQL', 'RPostgres', 'rsample', 'rsconnect', 'RSiena', 'RSQLite', 'rstan', 'rstatix', 'rsvg', 'rticles', 'rtracklayer', 'rversions', 'rvest', 'sandwich', 'scatterpie', 'segmented', 'seqinr', 'servr', 'sf', 'shape', 'shinyloadtest', 'shinythemes', 'shinyvalidate', 'shinyWidgets', 'slider', 'spacetime', 'spam', 'SparseM', 'spatial', 'spatialreg', 'spatstat', 'spatstat.data', 'spatstat.utils', 'spdep', 'speedglm', 'SQUAREM', 'ssh', 'StanHeaders', 'stars', 'statmod', 'stringi', 'styler', 'SummarizedExperiment', 'survC1', 'survival', 'survminer', 'svglite', 'swfscMisc', 'systemfonts', 'TCGAbiolinks', 'tensorflow', 'testit', 'textshaping', 'tfruns', 'thematic', 'tibble', 'tidyselect', 'tidyverse', 'tinytest', 'tinytex', 'TMB', 'tufte', 'tweedie', 'tweenr', 'units', 'urlchecker', 'usethis', 'V8', 'venn', 'vip', 'viridis', 'viridisLite', 'websocket', 'writexl', 'xfun', 'xgboost', 'XML', 'xmlparsedata', 'zoo' Update all/some/none? [a/s/n]: a also installing the dependencies ‘geometries’, ‘jsonify’, ‘rapidjsonr’, ‘sfheaders’, ‘misc3d’, ‘spatstat.sparse’, ‘gridtext’, ‘ids’, ‘curry’, ‘proxy’, ‘datamods’, ‘geojsonsf’, ‘plot3D’, ‘ggmulti’, ‘norm’, ‘spatstat.geom’, ‘spatstat.core’, ‘spatstat.linnet’, ‘ggtext’, ‘kknn’, ‘dtplyr’, ‘googledrive’, ‘googlesheets4’ There are binary versions available but the source versions are later: binary source needs_compilation plot3D 1.3 1.4 FALSE biclust 2.0.2 2.0.3 TRUE DEoptimR 1.0-8 1.0-9 FALSE e1071 1.7-6 1.7-7 TRUE effectsize 0.4.4-1 0.4.5 FALSE fansi 0.4.2 0.5.0 TRUE formatR 1.9 1.10 FALSE ks 1.12.0 1.13.0 TRUE performance 0.7.1 0.7.2 FALSE pkgcache 1.2.1 1.2.2 FALSE RcppArmadillo 0.10.4.0.0 0.10.5.0.0 TRUE RcppDate 0.0.2 0.0.3 FALSE rsconnect 0.8.17 0.8.18 FALSE rstan 2.21.1 2.21.2 TRUE rversions 2.0.2 2.1.0 FALSE shape 1.4.5 1.4.6 FALSE spdep 1.1-7 1.1-8 TRUE swfscMisc 1.4.3 1.5 FALSE Binaries will be installed trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/geometries_0.2.0.tgz' Content type 'application/x-gzip' length 1245078 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/jsonify_1.2.1.tgz' Content type 'application/x-gzip' length 1556439 bytes (1.5 MB) ================================================== downloaded 1.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rapidjsonr_1.2.0.tgz' Content type 'application/x-gzip' length 130409 bytes (127 KB) ================================================== downloaded 127 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/sfheaders_0.4.0.tgz' Content type 'application/x-gzip' length 2126231 bytes (2.0 MB) ================================================== downloaded 2.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/misc3d_0.9-0.tgz' Content type 'application/x-gzip' length 237482 bytes (231 KB) ================================================== downloaded 231 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatstat.sparse_2.0-0.tgz' Content type 'application/x-gzip' length 214535 bytes (209 KB) ================================================== downloaded 209 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gridtext_0.1.4.tgz' Content type 'application/x-gzip' length 944192 bytes (922 KB) ================================================== downloaded 922 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ids_1.0.1.tgz' Content type 'application/x-gzip' length 120090 bytes (117 KB) ================================================== downloaded 117 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/curry_0.1.1.tgz' Content type 'application/x-gzip' length 21724 bytes (21 KB) ================================================== downloaded 21 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/proxy_0.4-25.tgz' Content type 'application/x-gzip' length 232197 bytes (226 KB) ================================================== downloaded 226 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/datamods_1.1.4.tgz' Content type 'application/x-gzip' length 500072 bytes (488 KB) ================================================== downloaded 488 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/geojsonsf_2.0.1.tgz' Content type 'application/x-gzip' length 2702284 bytes (2.6 MB) ================================================== downloaded 2.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggmulti_1.0.2.tgz' Content type 'application/x-gzip' length 1535270 bytes (1.5 MB) ================================================== downloaded 1.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/norm_1.0-9.5.tgz' Content type 'application/x-gzip' length 103931 bytes (101 KB) ================================================== downloaded 101 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatstat.geom_2.1-0.tgz' Content type 'application/x-gzip' length 3881934 bytes (3.7 MB) ================================================== downloaded 3.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatstat.core_2.1-2.tgz' Content type 'application/x-gzip' length 6711939 bytes (6.4 MB) ================================================== downloaded 6.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatstat.linnet_2.1-1.tgz' Content type 'application/x-gzip' length 1276708 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggtext_0.1.1.tgz' Content type 'application/x-gzip' length 1253756 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/kknn_1.3.1.tgz' Content type 'application/x-gzip' length 319103 bytes (311 KB) ================================================== downloaded 311 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/dtplyr_1.1.0.tgz' Content type 'application/x-gzip' length 239909 bytes (234 KB) ================================================== downloaded 234 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/googledrive_1.0.1.tgz' Content type 'application/x-gzip' length 1766935 bytes (1.7 MB) ================================================== downloaded 1.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/googlesheets4_0.3.0.tgz' Content type 'application/x-gzip' length 472180 bytes (461 KB) ================================================== downloaded 461 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/analogsea_0.9.4.tgz' Content type 'application/x-gzip' length 341243 bytes (333 KB) ================================================== downloaded 333 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/AnnotationHub_2.20.2.tgz' Content type 'application/x-gzip' length 1504663 bytes (1.4 MB) ================================================== downloaded 1.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/antaresViz_0.15.4.tgz' Content type 'application/x-gzip' length 3055221 bytes (2.9 MB) ================================================== downloaded 2.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ape_5.5.tgz' Content type 'application/x-gzip' length 3601707 bytes (3.4 MB) ================================================== downloaded 3.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/arules_1.6-8.tgz' Content type 'application/x-gzip' length 2611902 bytes (2.5 MB) ================================================== downloaded 2.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/av_0.6.0.tgz' Content type 'application/x-gzip' length 11718642 bytes (11.2 MB) ================================================== downloaded 11.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/bayesplot_1.8.0.tgz' Content type 'application/x-gzip' length 4923335 bytes (4.7 MB) ================================================== downloaded 4.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/betareg_3.1-4.tgz' Content type 'application/x-gzip' length 926526 bytes (904 KB) ================================================== downloaded 904 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/biclust_2.0.2.tgz' Content type 'application/x-gzip' length 1321877 bytes (1.3 MB) ================================================== downloaded 1.3 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/BiocFileCache_1.12.1.tgz' Content type 'application/x-gzip' length 513589 bytes (501 KB) ================================================== downloaded 501 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/BiocManager_1.30.15.tgz' Content type 'application/x-gzip' length 322718 bytes (315 KB) ================================================== downloaded 315 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/biomaRt_2.44.4.tgz' Content type 'application/x-gzip' length 950292 bytes (928 KB) ================================================== downloaded 928 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/BioNetStat_1.8.4.tgz' Content type 'application/x-gzip' length 3141683 bytes (3.0 MB) ================================================== downloaded 3.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/bitops_1.0-7.tgz' Content type 'application/x-gzip' length 29061 bytes (28 KB) ================================================== downloaded 28 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/blogdown_1.3.tgz' Content type 'application/x-gzip' length 274311 bytes (267 KB) ================================================== downloaded 267 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/bookdown_0.22.tgz' Content type 'application/x-gzip' length 1078877 bytes (1.0 MB) ================================================== downloaded 1.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/boot_1.3-28.tgz' Content type 'application/x-gzip' length 628477 bytes (613 KB) ================================================== downloaded 613 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/bridgesampling_1.1-2.tgz' Content type 'application/x-gzip' length 1723146 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/brio_1.1.2.tgz' Content type 'application/x-gzip' length 37284 bytes (36 KB) ================================================== downloaded 36 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/brms_2.15.0.tgz' Content type 'application/x-gzip' length 5615948 bytes (5.4 MB) ================================================== downloaded 5.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/broom_0.7.6.tgz' Content type 'application/x-gzip' length 1777025 bytes (1.7 MB) ================================================== downloaded 1.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/broom.helpers_1.3.0.tgz' Content type 'application/x-gzip' length 346841 bytes (338 KB) ================================================== downloaded 338 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/C50_0.1.4.tgz' Content type 'application/x-gzip' length 482215 bytes (470 KB) ================================================== downloaded 470 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/cachem_1.0.5.tgz' Content type 'application/x-gzip' length 65744 bytes (64 KB) ================================================== downloaded 64 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/caret_6.0-88.tgz' Content type 'application/x-gzip' length 6288820 bytes (6.0 MB) ================================================== downloaded 6.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/caTools_1.18.2.tgz' Content type 'application/x-gzip' length 243209 bytes (237 KB) ================================================== downloaded 237 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/circlize_0.4.12.tgz' Content type 'application/x-gzip' length 3285245 bytes (3.1 MB) ================================================== downloaded 3.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/class_7.3-19.tgz' Content type 'application/x-gzip' length 96057 bytes (93 KB) ================================================== downloaded 93 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/cli_2.5.0.tgz' Content type 'application/x-gzip' length 531400 bytes (518 KB) ================================================== downloaded 518 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/clue_0.3-59.tgz' Content type 'application/x-gzip' length 1146524 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/cluster_2.1.2.tgz' Content type 'application/x-gzip' length 605101 bytes (590 KB) ================================================== downloaded 590 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/clusterProfiler_3.16.1.tgz' Content type 'application/x-gzip' length 658894 bytes (643 KB) ================================================== downloaded 643 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/clustMixType_0.2-11.tgz' Content type 'application/x-gzip' length 170664 bytes (166 KB) ================================================== downloaded 166 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/coin_1.4-1.tgz' Content type 'application/x-gzip' length 1470780 bytes (1.4 MB) ================================================== downloaded 1.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/colorspace_2.0-1.tgz' Content type 'application/x-gzip' length 2608831 bytes (2.5 MB) ================================================== downloaded 2.5 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/ComplexHeatmap_2.4.3.tgz' Content type 'application/x-gzip' length 2669889 bytes (2.5 MB) ================================================== downloaded 2.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/compositions_2.0-1.tgz' Content type 'application/x-gzip' length 1986403 bytes (1.9 MB) ================================================== downloaded 1.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/config_0.3.1.tgz' Content type 'application/x-gzip' length 79254 bytes (77 KB) ================================================== downloaded 77 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/corrplot_0.88.tgz' Content type 'application/x-gzip' length 3879412 bytes (3.7 MB) ================================================== downloaded 3.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/cowplot_1.1.1.tgz' Content type 'application/x-gzip' length 1373669 bytes (1.3 MB) ================================================== downloaded 1.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/crul_1.1.0.tgz' Content type 'application/x-gzip' length 629935 bytes (615 KB) ================================================== downloaded 615 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/Cubist_0.2.40.tgz' Content type 'application/x-gzip' length 986840 bytes (963 KB) ================================================== downloaded 963 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/DBI_1.1.1.tgz' Content type 'application/x-gzip' length 670916 bytes (655 KB) ================================================== downloaded 655 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/dbplyr_2.1.1.tgz' Content type 'application/x-gzip' length 799462 bytes (780 KB) ================================================== downloaded 780 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/DelayedArray_0.14.1.tgz' Content type 'application/x-gzip' length 2254881 bytes (2.2 MB) ================================================== downloaded 2.2 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/DelayedMatrixStats_1.10.1.tgz' Content type 'application/x-gzip' length 649554 bytes (634 KB) ================================================== downloaded 634 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/deldir_0.2-10.tgz' Content type 'application/x-gzip' length 308566 bytes (301 KB) ================================================== downloaded 301 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/dendextend_1.15.1.tgz' Content type 'application/x-gzip' length 3885200 bytes (3.7 MB) ================================================== downloaded 3.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/Deriv_4.1.3.tgz' Content type 'application/x-gzip' length 146838 bytes (143 KB) ================================================== downloaded 143 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/devtools_2.4.1.tgz' Content type 'application/x-gzip' length 393370 bytes (384 KB) ================================================== downloaded 384 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/dfidx_0.0-4.tgz' Content type 'application/x-gzip' length 429007 bytes (418 KB) ================================================== downloaded 418 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/diptest_0.76-0.tgz' Content type 'application/x-gzip' length 187962 bytes (183 KB) ================================================== downloaded 183 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/doBy_4.6.10.tgz' Content type 'application/x-gzip' length 4503581 bytes (4.3 MB) ================================================== downloaded 4.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/dotCall64_1.0-1.tgz' Content type 'application/x-gzip' length 41309 bytes (40 KB) ================================================== downloaded 40 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/downlit_0.2.1.tgz' Content type 'application/x-gzip' length 96428 bytes (94 KB) ================================================== downloaded 94 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/dplyr_1.0.6.tgz' Content type 'application/x-gzip' length 1255997 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/DT_0.18.tgz' Content type 'application/x-gzip' length 1678529 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/e1071_1.7-6.tgz' Content type 'application/x-gzip' length 909159 bytes (887 KB) ================================================== downloaded 887 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/edgeR_3.30.3.tgz' Content type 'application/x-gzip' length 2429518 bytes (2.3 MB) ================================================== downloaded 2.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/emmeans_1.6.0.tgz' Content type 'application/x-gzip' length 1886475 bytes (1.8 MB) ================================================== downloaded 1.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/epiR_2.0.19.tgz' Content type 'application/x-gzip' length 1157455 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/esquisse_1.0.1.tgz' Content type 'application/x-gzip' length 1373455 bytes (1.3 MB) ================================================== downloaded 1.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/exactRankTests_0.8-32.tgz' Content type 'application/x-gzip' length 154041 bytes (150 KB) ================================================== downloaded 150 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/ExperimentHub_1.14.2.tgz' Content type 'application/x-gzip' length 521602 bytes (509 KB) ================================================== downloaded 509 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/expm_0.999-6.tgz' Content type 'application/x-gzip' length 238015 bytes (232 KB) ================================================== downloaded 232 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/fansi_0.4.2.tgz' Content type 'application/x-gzip' length 212149 bytes (207 KB) ================================================== downloaded 207 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/fields_12.3.tgz' Content type 'application/x-gzip' length 3918648 bytes (3.7 MB) ================================================== downloaded 3.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/fixest_0.8.4.tgz' Content type 'application/x-gzip' length 4310895 bytes (4.1 MB) ================================================== downloaded 4.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/foghorn_1.4.0.tgz' Content type 'application/x-gzip' length 122107 bytes (119 KB) ================================================== downloaded 119 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/forecast_8.14.tgz' Content type 'application/x-gzip' length 2368325 bytes (2.3 MB) ================================================== downloaded 2.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/formattable_0.2.1.tgz' Content type 'application/x-gzip' length 169788 bytes (165 KB) ================================================== downloaded 165 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/freetypeharfbuzz_0.2.6.tgz' Content type 'application/x-gzip' length 1943821 bytes (1.9 MB) ================================================== downloaded 1.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/furrr_0.2.2.tgz' Content type 'application/x-gzip' length 1017216 bytes (993 KB) ================================================== downloaded 993 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/future.apply_1.7.0.tgz' Content type 'application/x-gzip' length 133286 bytes (130 KB) ================================================== downloaded 130 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/future.callr_0.6.1.tgz' Content type 'application/x-gzip' length 65289 bytes (63 KB) ================================================== downloaded 63 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/GA_3.2.1.tgz' Content type 'application/x-gzip' length 6425449 bytes (6.1 MB) ================================================== downloaded 6.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gamlss_5.3-4.tgz' Content type 'application/x-gzip' length 1374085 bytes (1.3 MB) ================================================== downloaded 1.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gamlss.data_6.0-1.tgz' Content type 'application/x-gzip' length 1326657 bytes (1.3 MB) ================================================== downloaded 1.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gamlss.dist_5.3-2.tgz' Content type 'application/x-gzip' length 3644171 bytes (3.5 MB) ================================================== downloaded 3.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gargle_1.1.0.tgz' Content type 'application/x-gzip' length 433245 bytes (423 KB) ================================================== downloaded 423 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/geepack_1.3-2.tgz' Content type 'application/x-gzip' length 957376 bytes (934 KB) ================================================== downloaded 934 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/GenomeInfoDb_1.24.2.tgz' Content type 'application/x-gzip' length 4024505 bytes (3.8 MB) ================================================== downloaded 3.8 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/GenomicFeatures_1.40.1.tgz' Content type 'application/x-gzip' length 2401934 bytes (2.3 MB) ================================================== downloaded 2.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/geojsonio_0.9.4.tgz' Content type 'application/x-gzip' length 984946 bytes (961 KB) ================================================== downloaded 961 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gert_1.3.0.tgz' Content type 'application/x-gzip' length 2034324 bytes (1.9 MB) ================================================== downloaded 1.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/GGally_2.1.1.tgz' Content type 'application/x-gzip' length 1636505 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggplotify_0.0.7.tgz' Content type 'application/x-gzip' length 203866 bytes (199 KB) ================================================== downloaded 199 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggraph_2.0.5.tgz' Content type 'application/x-gzip' length 4603208 bytes (4.4 MB) ================================================== downloaded 4.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggrepel_0.9.1.tgz' Content type 'application/x-gzip' length 702306 bytes (685 KB) ================================================== downloaded 685 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggridges_0.5.3.tgz' Content type 'application/x-gzip' length 2255757 bytes (2.2 MB) ================================================== downloaded 2.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggsignif_0.6.1.tgz' Content type 'application/x-gzip' length 228271 bytes (222 KB) ================================================== downloaded 222 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ggthemes_4.2.4.tgz' Content type 'application/x-gzip' length 436743 bytes (426 KB) ================================================== downloaded 426 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gh_1.3.0.tgz' Content type 'application/x-gzip' length 137623 bytes (134 KB) ================================================== downloaded 134 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/git2r_0.28.0.tgz' Content type 'application/x-gzip' length 2069632 bytes (2.0 MB) ================================================== downloaded 2.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/glmnet_4.1-1.tgz' Content type 'application/x-gzip' length 1953244 bytes (1.9 MB) ================================================== downloaded 1.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/glmnetUtils_1.1.8.tgz' Content type 'application/x-gzip' length 107413 bytes (104 KB) ================================================== downloaded 104 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gmm_1.6-6.tgz' Content type 'application/x-gzip' length 1435710 bytes (1.4 MB) ================================================== downloaded 1.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gmp_0.6-2.tgz' Content type 'application/x-gzip' length 869046 bytes (848 KB) ================================================== downloaded 848 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/GOSemSim_2.14.2.tgz' Content type 'application/x-gzip' length 863349 bytes (843 KB) ================================================== downloaded 843 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gstat_2.0-7.tgz' Content type 'application/x-gzip' length 2511800 bytes (2.4 MB) ================================================== downloaded 2.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gt_0.3.0.tgz' Content type 'application/x-gzip' length 5840851 bytes (5.6 MB) ================================================== downloaded 5.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/gtsummary_1.4.1.tgz' Content type 'application/x-gzip' length 2968269 bytes (2.8 MB) ================================================== downloaded 2.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/haven_2.4.1.tgz' Content type 'application/x-gzip' length 970368 bytes (947 KB) ================================================== downloaded 947 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/HDF5Array_1.16.1.tgz' Content type 'application/x-gzip' length 10047528 bytes (9.6 MB) ================================================== downloaded 9.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/heatmaply_1.2.1.tgz' Content type 'application/x-gzip' length 1768489 bytes (1.7 MB) ================================================== downloaded 1.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/hms_1.1.0.tgz' Content type 'application/x-gzip' length 98421 bytes (96 KB) ================================================== downloaded 96 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/htmlTable_2.2.1.tgz' Content type 'application/x-gzip' length 401137 bytes (391 KB) ================================================== downloaded 391 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/httpuv_1.6.1.tgz' Content type 'application/x-gzip' length 2663811 bytes (2.5 MB) ================================================== downloaded 2.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/huxtable_5.4.0.tgz' Content type 'application/x-gzip' length 1702244 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/inline_0.3.18.tgz' Content type 'application/x-gzip' length 126589 bytes (123 KB) ================================================== downloaded 123 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/interactiveDisplayBase_1.26.3.tgz' Content type 'application/x-gzip' length 32171 bytes (31 KB) ================================================== downloaded 31 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/inum_1.0-4.tgz' Content type 'application/x-gzip' length 37202 bytes (36 KB) ================================================== downloaded 36 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ipred_0.9-11.tgz' Content type 'application/x-gzip' length 386945 bytes (377 KB) ================================================== downloaded 377 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/IRdisplay_1.0.tgz' Content type 'application/x-gzip' length 30065 bytes (29 KB) ================================================== downloaded 29 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/joineRML_0.4.5.tgz' Content type 'application/x-gzip' length 3431787 bytes (3.3 MB) ================================================== downloaded 3.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/jqr_1.2.1.tgz' Content type 'application/x-gzip' length 422319 bytes (412 KB) ================================================== downloaded 412 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/keras_2.4.0.tgz' Content type 'application/x-gzip' length 2511227 bytes (2.4 MB) ================================================== downloaded 2.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/KernSmooth_2.23-20.tgz' Content type 'application/x-gzip' length 100321 bytes (97 KB) ================================================== downloaded 97 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ks_1.12.0.tgz' Content type 'application/x-gzip' length 1680904 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/labelled_2.8.0.tgz' Content type 'application/x-gzip' length 244336 bytes (238 KB) ================================================== downloaded 238 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/Lahman_9.0-0.tgz' Content type 'application/x-gzip' length 6595451 bytes (6.3 MB) ================================================== downloaded 6.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/lattice_0.20-44.tgz' Content type 'application/x-gzip' length 1157882 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/lava_1.6.9.tgz' Content type 'application/x-gzip' length 2720355 bytes (2.6 MB) ================================================== downloaded 2.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/lavaan_0.6-8.tgz' Content type 'application/x-gzip' length 3004242 bytes (2.9 MB) ================================================== downloaded 2.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/leaflet.minicharts_0.6.2.tgz' Content type 'application/x-gzip' length 837990 bytes (818 KB) ================================================== downloaded 818 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/lfe_2.8-6.tgz' Content type 'application/x-gzip' length 1328023 bytes (1.3 MB) ================================================== downloaded 1.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/libcoin_1.0-8.tgz' Content type 'application/x-gzip' length 1041551 bytes (1017 KB) ================================================== downloaded 1017 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/limma_3.44.3.tgz' Content type 'application/x-gzip' length 2814512 bytes (2.7 MB) ================================================== downloaded 2.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/lme4_1.1-27.tgz' Content type 'application/x-gzip' length 7327582 bytes (7.0 MB) ================================================== downloaded 7.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/loon_1.3.6.tgz' Content type 'application/x-gzip' length 2619342 bytes (2.5 MB) ================================================== downloaded 2.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/loon.ggplot_1.2.0.tgz' Content type 'application/x-gzip' length 896914 bytes (875 KB) ================================================== downloaded 875 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/lubridate_1.7.10.tgz' Content type 'application/x-gzip' length 1608605 bytes (1.5 MB) ================================================== downloaded 1.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/lwgeom_0.2-6.tgz' Content type 'application/x-gzip' length 18694546 bytes (17.8 MB) ================================================== downloaded 17.8 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/maftools_2.4.12.tgz' Content type 'application/x-gzip' length 8615674 bytes (8.2 MB) ================================================== downloaded 8.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/magick_2.7.2.tgz' Content type 'application/x-gzip' length 38927257 bytes (37.1 MB) ================================================== downloaded 37.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/maptools_1.1-1.tgz' Content type 'application/x-gzip' length 2173361 bytes (2.1 MB) ================================================== downloaded 2.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/margins_0.3.26.tgz' Content type 'application/x-gzip' length 1642088 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/MASS_7.3-54.tgz' Content type 'application/x-gzip' length 1163340 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/mathjaxr_1.4-0.tgz' Content type 'application/x-gzip' length 817557 bytes (798 KB) ================================================== downloaded 798 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/Matrix_1.3-3.tgz' Content type 'application/x-gzip' length 4890368 bytes (4.7 MB) ================================================== downloaded 4.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/MatrixModels_0.5-0.tgz' Content type 'application/x-gzip' length 449977 bytes (439 KB) ================================================== downloaded 439 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/matrixStats_0.58.0.tgz' Content type 'application/x-gzip' length 2019783 bytes (1.9 MB) ================================================== downloaded 1.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/maxLik_1.4-8.tgz' Content type 'application/x-gzip' length 1571598 bytes (1.5 MB) ================================================== downloaded 1.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/mclogit_0.8.7.3.tgz' Content type 'application/x-gzip' length 249998 bytes (244 KB) ================================================== downloaded 244 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/memoise_2.0.0.tgz' Content type 'application/x-gzip' length 47412 bytes (46 KB) ================================================== downloaded 46 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/mgcv_1.8-35.tgz' Content type 'application/x-gzip' length 3513655 bytes (3.4 MB) ================================================== downloaded 3.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/mlbench_2.1-3.tgz' Content type 'application/x-gzip' length 1049448 bytes (1.0 MB) ================================================== downloaded 1.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/modeltests_0.1.4.tgz' Content type 'application/x-gzip' length 69194 bytes (67 KB) ================================================== downloaded 67 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/mondate_0.10.02.tgz' Content type 'application/x-gzip' length 302107 bytes (295 KB) ================================================== downloaded 295 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/muhaz_1.2.6.4.tgz' Content type 'application/x-gzip' length 81445 bytes (79 KB) ================================================== downloaded 79 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/multcomp_1.4-17.tgz' Content type 'application/x-gzip' length 727036 bytes (709 KB) ================================================== downloaded 709 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/naniar_0.6.1.tgz' Content type 'application/x-gzip' length 2704371 bytes (2.6 MB) ================================================== downloaded 2.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/nnet_7.3-16.tgz' Content type 'application/x-gzip' length 129042 bytes (126 KB) ================================================== downloaded 126 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/nycflights13_1.0.2.tgz' Content type 'application/x-gzip' length 4502304 bytes (4.3 MB) ================================================== downloaded 4.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/odbc_1.3.2.tgz' Content type 'application/x-gzip' length 2213356 bytes (2.1 MB) ================================================== downloaded 2.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/officer_0.3.18.tgz' Content type 'application/x-gzip' length 1473465 bytes (1.4 MB) ================================================== downloaded 1.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/openssl_1.4.4.tgz' Content type 'application/x-gzip' length 2970219 bytes (2.8 MB) ================================================== downloaded 2.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/packrat_0.6.0.tgz' Content type 'application/x-gzip' length 477461 bytes (466 KB) ================================================== downloaded 466 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/paletteer_1.3.0.tgz' Content type 'application/x-gzip' length 377672 bytes (368 KB) ================================================== downloaded 368 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/palr_0.3.0.tgz' Content type 'application/x-gzip' length 232516 bytes (227 KB) ================================================== downloaded 227 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pals_1.7.tgz' Content type 'application/x-gzip' length 1898326 bytes (1.8 MB) ================================================== downloaded 1.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/parallelly_1.25.0.tgz' Content type 'application/x-gzip' length 238157 bytes (232 KB) ================================================== downloaded 232 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/parsedate_1.2.1.tgz' Content type 'application/x-gzip' length 58571 bytes (57 KB) ================================================== downloaded 57 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/partitions_1.10-2.tgz' Content type 'application/x-gzip' length 557006 bytes (543 KB) ================================================== downloaded 543 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/party_1.3-7.tgz' Content type 'application/x-gzip' length 961557 bytes (939 KB) ================================================== downloaded 939 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/partykit_1.2-13.tgz' Content type 'application/x-gzip' length 2418749 bytes (2.3 MB) ================================================== downloaded 2.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pbkrtest_0.5.1.tgz' Content type 'application/x-gzip' length 352812 bytes (344 KB) ================================================== downloaded 344 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/PBSmapping_2.73.0.tgz' Content type 'application/x-gzip' length 5079598 bytes (4.8 MB) ================================================== downloaded 4.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pcaPP_1.9-74.tgz' Content type 'application/x-gzip' length 655485 bytes (640 KB) ================================================== downloaded 640 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pdftools_3.0.1.tgz' Content type 'application/x-gzip' length 6871964 bytes (6.6 MB) ================================================== downloaded 6.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pegas_1.0-1.tgz' Content type 'application/x-gzip' length 1040542 bytes (1016 KB) ================================================== downloaded 1016 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/phangorn_2.7.0.tgz' Content type 'application/x-gzip' length 3474860 bytes (3.3 MB) ================================================== downloaded 3.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pillar_1.6.1.tgz' Content type 'application/x-gzip' length 1011711 bytes (987 KB) ================================================== downloaded 987 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pixmap_0.4-12.tgz' Content type 'application/x-gzip' length 201899 bytes (197 KB) ================================================== downloaded 197 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pkgcond_0.1.1.tgz' Content type 'application/x-gzip' length 56299 bytes (54 KB) ================================================== downloaded 54 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pkgdepends_0.1.1.tgz' Content type 'application/x-gzip' length 891472 bytes (870 KB) ================================================== downloaded 870 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pkgKitten_0.2.1.tgz' Content type 'application/x-gzip' length 22792 bytes (22 KB) ================================================== downloaded 22 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/plm_2.4-1.tgz' Content type 'application/x-gzip' length 1725880 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/plotrix_3.8-1.tgz' Content type 'application/x-gzip' length 1139222 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/plumberDeploy_0.2.1.tgz' Content type 'application/x-gzip' length 50534 bytes (49 KB) ================================================== downloaded 49 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pool_0.1.6.tgz' Content type 'application/x-gzip' length 302813 bytes (295 KB) ================================================== downloaded 295 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/prettydoc_0.4.1.tgz' Content type 'application/x-gzip' length 991217 bytes (967 KB) ================================================== downloaded 967 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/prismatic_1.0.0.tgz' Content type 'application/x-gzip' length 769503 bytes (751 KB) ================================================== downloaded 751 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/pROC_1.17.0.1.tgz' Content type 'application/x-gzip' length 1114984 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/processx_3.5.2.tgz' Content type 'application/x-gzip' length 295873 bytes (288 KB) ================================================== downloaded 288 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/prompt_1.0.1.tgz' Content type 'application/x-gzip' length 199153 bytes (194 KB) ================================================== downloaded 194 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/psych_2.1.3.tgz' Content type 'application/x-gzip' length 4108244 bytes (3.9 MB) ================================================== downloaded 3.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/psychTools_2.1.3.tgz' Content type 'application/x-gzip' length 4158160 bytes (4.0 MB) ================================================== downloaded 4.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/quantreg_5.85.tgz' Content type 'application/x-gzip' length 1632529 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/R.cache_0.15.0.tgz' Content type 'application/x-gzip' length 108502 bytes (105 KB) ================================================== downloaded 105 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/radiant.model_1.4.0.tgz' Content type 'application/x-gzip' length 1068971 bytes (1.0 MB) ================================================== downloaded 1.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rapidoc_8.4.3.tgz' Content type 'application/x-gzip' length 301964 bytes (294 KB) ================================================== downloaded 294 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/raster_3.4-10.tgz' Content type 'application/x-gzip' length 4242005 bytes (4.0 MB) ================================================== downloaded 4.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rbibutils_2.1.1.tgz' Content type 'application/x-gzip' length 809528 bytes (790 KB) ================================================== downloaded 790 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RcppArmadillo_0.10.4.0.0.tgz' Content type 'application/x-gzip' length 1880523 bytes (1.8 MB) ================================================== downloaded 1.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RcppParallel_5.1.4.tgz' Content type 'application/x-gzip' length 612118 bytes (597 KB) ================================================== downloaded 597 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RCurl_1.98-1.3.tgz' Content type 'application/x-gzip' length 1091078 bytes (1.0 MB) ================================================== downloaded 1.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/Rdpack_2.1.1.tgz' Content type 'application/x-gzip' length 921447 bytes (899 KB) ================================================== downloaded 899 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/reactR_0.4.4.tgz' Content type 'application/x-gzip' length 610894 bytes (596 KB) ================================================== downloaded 596 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/recipes_0.1.16.tgz' Content type 'application/x-gzip' length 1190113 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/redoc_2.0.0.49.tgz' Content type 'application/x-gzip' length 433567 bytes (423 KB) ================================================== downloaded 423 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/renv_0.13.2.tgz' Content type 'application/x-gzip' length 1152243 bytes (1.1 MB) ================================================== downloaded 1.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/repr_1.1.3.tgz' Content type 'application/x-gzip' length 121525 bytes (118 KB) ================================================== downloaded 118 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/reprex_2.0.0.tgz' Content type 'application/x-gzip' length 489610 bytes (478 KB) ================================================== downloaded 478 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RestRserve_0.4.1.tgz' Content type 'application/x-gzip' length 2834913 bytes (2.7 MB) ================================================== downloaded 2.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/reticulate_1.20.tgz' Content type 'application/x-gzip' length 1731529 bytes (1.7 MB) ================================================== downloaded 1.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rgdal_1.5-23.tgz' Content type 'application/x-gzip' length 90909166 bytes (86.7 MB) ================================================== downloaded 86.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rgl_0.106.8.tgz' Content type 'application/x-gzip' length 6540457 bytes (6.2 MB) ================================================== downloaded 6.2 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/rhdf5_2.32.4.tgz' Content type 'application/x-gzip' length 2430898 bytes (2.3 MB) ================================================== downloaded 2.3 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/Rhdf5lib_1.10.1.tgz' Content type 'application/x-gzip' length 9048862 bytes (8.6 MB) ================================================== downloaded 8.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rio_0.5.26.tgz' Content type 'application/x-gzip' length 474651 bytes (463 KB) ================================================== downloaded 463 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/riverplot_0.10.tgz' Content type 'application/x-gzip' length 780550 bytes (762 KB) ================================================== downloaded 762 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rJava_1.0-4.tgz' Content type 'application/x-gzip' length 768085 bytes (750 KB) ================================================== downloaded 750 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RMariaDB_1.1.1.tgz' Content type 'application/x-gzip' length 2802030 bytes (2.7 MB) ================================================== downloaded 2.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RMySQL_0.10.21.tgz' Content type 'application/x-gzip' length 2042681 bytes (1.9 MB) ================================================== downloaded 1.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RPostgres_1.3.2.tgz' Content type 'application/x-gzip' length 2856370 bytes (2.7 MB) ================================================== downloaded 2.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rsample_0.1.0.tgz' Content type 'application/x-gzip' length 410352 bytes (400 KB) ================================================== downloaded 400 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RSiena_1.3.0.tgz' Content type 'application/x-gzip' length 8721728 bytes (8.3 MB) ================================================== downloaded 8.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/RSQLite_2.2.7.tgz' Content type 'application/x-gzip' length 4362520 bytes (4.2 MB) ================================================== downloaded 4.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rstan_2.21.1.tgz' Content type 'application/x-gzip' length 24875244 bytes (23.7 MB) ================================================== downloaded 23.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rstatix_0.7.0.tgz' Content type 'application/x-gzip' length 605811 bytes (591 KB) ================================================== downloaded 591 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rsvg_2.1.2.tgz' Content type 'application/x-gzip' length 26471084 bytes (25.2 MB) ================================================== downloaded 25.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rticles_0.19.tgz' Content type 'application/x-gzip' length 1661010 bytes (1.6 MB) ================================================== downloaded 1.6 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/rtracklayer_1.48.0.tgz' Content type 'application/x-gzip' length 6712679 bytes (6.4 MB) ================================================== downloaded 6.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/rvest_1.0.0.tgz' Content type 'application/x-gzip' length 196848 bytes (192 KB) ================================================== downloaded 192 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/sandwich_3.0-1.tgz' Content type 'application/x-gzip' length 1489646 bytes (1.4 MB) ================================================== downloaded 1.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/scatterpie_0.1.6.tgz' Content type 'application/x-gzip' length 407088 bytes (397 KB) ================================================== downloaded 397 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/segmented_1.3-4.tgz' Content type 'application/x-gzip' length 537299 bytes (524 KB) ================================================== downloaded 524 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/seqinr_4.2-5.tgz' Content type 'application/x-gzip' length 4152849 bytes (4.0 MB) ================================================== downloaded 4.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/servr_0.22.tgz' Content type 'application/x-gzip' length 85299 bytes (83 KB) ================================================== downloaded 83 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/sf_0.9-8.tgz' Content type 'application/x-gzip' length 89179888 bytes (85.0 MB) ================================================== downloaded 85.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/shinyloadtest_1.1.0.tgz' Content type 'application/x-gzip' length 586581 bytes (572 KB) ================================================== downloaded 572 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/shinythemes_1.2.0.tgz' Content type 'application/x-gzip' length 966211 bytes (943 KB) ================================================== downloaded 943 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/shinyWidgets_0.6.0.tgz' Content type 'application/x-gzip' length 1361082 bytes (1.3 MB) ================================================== downloaded 1.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/slider_0.2.1.tgz' Content type 'application/x-gzip' length 360087 bytes (351 KB) ================================================== downloaded 351 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spacetime_1.2-4.tgz' Content type 'application/x-gzip' length 2936586 bytes (2.8 MB) ================================================== downloaded 2.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spam_2.6-0.tgz' Content type 'application/x-gzip' length 2757058 bytes (2.6 MB) ================================================== downloaded 2.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/SparseM_1.81.tgz' Content type 'application/x-gzip' length 1098071 bytes (1.0 MB) ================================================== downloaded 1.0 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatial_7.3-14.tgz' Content type 'application/x-gzip' length 157659 bytes (153 KB) ================================================== downloaded 153 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatialreg_1.1-8.tgz' Content type 'application/x-gzip' length 1599825 bytes (1.5 MB) ================================================== downloaded 1.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatstat_2.1-0.tgz' Content type 'application/x-gzip' length 3582073 bytes (3.4 MB) ================================================== downloaded 3.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatstat.data_2.1-0.tgz' Content type 'application/x-gzip' length 4051110 bytes (3.9 MB) ================================================== downloaded 3.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spatstat.utils_2.1-0.tgz' Content type 'application/x-gzip' length 353743 bytes (345 KB) ================================================== downloaded 345 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/spdep_1.1-7.tgz' Content type 'application/x-gzip' length 5523712 bytes (5.3 MB) ================================================== downloaded 5.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/speedglm_0.3-3.tgz' Content type 'application/x-gzip' length 191022 bytes (186 KB) ================================================== downloaded 186 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/SQUAREM_2021.1.tgz' Content type 'application/x-gzip' length 176490 bytes (172 KB) ================================================== downloaded 172 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/ssh_0.8.0.tgz' Content type 'application/x-gzip' length 1854205 bytes (1.8 MB) ================================================== downloaded 1.8 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/StanHeaders_2.21.0-7.tgz' Content type 'application/x-gzip' length 1546907 bytes (1.5 MB) ================================================== downloaded 1.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/stars_0.5-2.tgz' Content type 'application/x-gzip' length 5404971 bytes (5.2 MB) ================================================== downloaded 5.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/statmod_1.4.36.tgz' Content type 'application/x-gzip' length 273306 bytes (266 KB) ================================================== downloaded 266 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/stringi_1.6.2.tgz' Content type 'application/x-gzip' length 14597551 bytes (13.9 MB) ================================================== downloaded 13.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/styler_1.4.1.tgz' Content type 'application/x-gzip' length 689333 bytes (673 KB) ================================================== downloaded 673 KB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/SummarizedExperiment_1.18.2.tgz' Content type 'application/x-gzip' length 2839408 bytes (2.7 MB) ================================================== downloaded 2.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/survC1_1.0-3.tgz' Content type 'application/x-gzip' length 55490 bytes (54 KB) ================================================== downloaded 54 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/survival_3.2-11.tgz' Content type 'application/x-gzip' length 6803373 bytes (6.5 MB) ================================================== downloaded 6.5 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/survminer_0.4.9.tgz' Content type 'application/x-gzip' length 3227677 bytes (3.1 MB) ================================================== downloaded 3.1 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/svglite_2.0.0.tgz' Content type 'application/x-gzip' length 846945 bytes (827 KB) ================================================== downloaded 827 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/systemfonts_1.0.2.tgz' Content type 'application/x-gzip' length 2601820 bytes (2.5 MB) ================================================== downloaded 2.5 MB trying URL 'https://bioconductor.org/packages/3.11/bioc/bin/macosx/contrib/4.0/TCGAbiolinks_2.16.4.tgz' Content type 'application/x-gzip' length 49716574 bytes (47.4 MB) ================================================== downloaded 47.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tensorflow_2.4.0.tgz' Content type 'application/x-gzip' length 146103 bytes (142 KB) ================================================== downloaded 142 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/testit_0.13.tgz' Content type 'application/x-gzip' length 31282 bytes (30 KB) ================================================== downloaded 30 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/textshaping_0.3.4.tgz' Content type 'application/x-gzip' length 1281435 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tfruns_1.5.0.tgz' Content type 'application/x-gzip' length 1480128 bytes (1.4 MB) ================================================== downloaded 1.4 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/thematic_0.1.2.tgz' Content type 'application/x-gzip' length 1782489 bytes (1.7 MB) ================================================== downloaded 1.7 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tibble_3.1.2.tgz' Content type 'application/x-gzip' length 803690 bytes (784 KB) ================================================== downloaded 784 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tidyselect_1.1.1.tgz' Content type 'application/x-gzip' length 198800 bytes (194 KB) ================================================== downloaded 194 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tidyverse_1.3.1.tgz' Content type 'application/x-gzip' length 421035 bytes (411 KB) ================================================== downloaded 411 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tinytest_1.2.4.tgz' Content type 'application/x-gzip' length 532688 bytes (520 KB) ================================================== downloaded 520 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tinytex_0.31.tgz' Content type 'application/x-gzip' length 118071 bytes (115 KB) ================================================== downloaded 115 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/TMB_1.7.20.tgz' Content type 'application/x-gzip' length 1210099 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tufte_0.10.tgz' Content type 'application/x-gzip' length 269000 bytes (262 KB) ================================================== downloaded 262 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tweedie_2.3.3.tgz' Content type 'application/x-gzip' length 358958 bytes (350 KB) ================================================== downloaded 350 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/tweenr_1.0.2.tgz' Content type 'application/x-gzip' length 1025604 bytes (1001 KB) ================================================== downloaded 1001 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/units_0.7-1.tgz' Content type 'application/x-gzip' length 1260156 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/urlchecker_1.0.0.tgz' Content type 'application/x-gzip' length 33154 bytes (32 KB) ================================================== downloaded 32 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/usethis_2.0.1.tgz' Content type 'application/x-gzip' length 707071 bytes (690 KB) ================================================== downloaded 690 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/V8_3.4.2.tgz' Content type 'application/x-gzip' length 7578642 bytes (7.2 MB) ================================================== downloaded 7.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/venn_1.10.tgz' Content type 'application/x-gzip' length 296584 bytes (289 KB) ================================================== downloaded 289 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/vip_0.3.2.tgz' Content type 'application/x-gzip' length 2777788 bytes (2.6 MB) ================================================== downloaded 2.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/viridis_0.6.1.tgz' Content type 'application/x-gzip' length 3022034 bytes (2.9 MB) ================================================== downloaded 2.9 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/viridisLite_0.4.0.tgz' Content type 'application/x-gzip' length 1296423 bytes (1.2 MB) ================================================== downloaded 1.2 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/websocket_1.4.0.tgz' Content type 'application/x-gzip' length 5605928 bytes (5.3 MB) ================================================== downloaded 5.3 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/writexl_1.4.0.tgz' Content type 'application/x-gzip' length 457651 bytes (446 KB) ================================================== downloaded 446 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/xfun_0.23.tgz' Content type 'application/x-gzip' length 338371 bytes (330 KB) ================================================== downloaded 330 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/xgboost_1.4.1.1.tgz' Content type 'application/x-gzip' length 10036617 bytes (9.6 MB) ================================================== downloaded 9.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/XML_3.99-0.6.tgz' Content type 'application/x-gzip' length 3747121 bytes (3.6 MB) ================================================== downloaded 3.6 MB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/xmlparsedata_1.0.5.tgz' Content type 'application/x-gzip' length 18389 bytes (17 KB) ================================================== downloaded 17 KB trying URL 'https://cloud.r-project.org/bin/macosx/contrib/4.0/zoo_1.8-9.tgz' Content type 'application/x-gzip' length 1026442 bytes (1002 KB) ================================================== downloaded 1002 KB The downloaded binary packages are in /var/folders/0k/bxg5lhr92sq74mb1d446ql540000gp/T//Rtmpol756e/downloaded_packages installing the source packages ‘plot3D’, ‘DEoptimR’, ‘effectsize’, ‘formatR’, ‘GO.db’, ‘org.Hs.eg.db’, ‘performance’, ‘pkgcache’, ‘RcppDate’, ‘rsconnect’, ‘rversions’, ‘shape’, ‘shinyvalidate’, ‘swfscMisc’ trying URL 'https://cloud.r-project.org/src/contrib/plot3D_1.4.tar.gz' Content type 'application/x-gzip' length 2616461 bytes (2.5 MB) ================================================== downloaded 2.5 MB trying URL 'https://cloud.r-project.org/src/contrib/DEoptimR_1.0-9.tar.gz' Content type 'application/x-gzip' length 36148 bytes (35 KB) ================================================== downloaded 35 KB trying URL 'https://cloud.r-project.org/src/contrib/effectsize_0.4.5.tar.gz' Content type 'application/x-gzip' length 831887 bytes (812 KB) ================================================== downloaded 812 KB trying URL 'https://cloud.r-project.org/src/contrib/formatR_1.10.tar.gz' Content type 'application/x-gzip' length 94221 bytes (92 KB) ================================================== downloaded 92 KB trying URL 'https://bioconductor.org/packages/3.11/data/annotation/src/contrib/GO.db_3.11.4.tar.gz' Content type 'application/x-gzip' length 31975305 bytes (30.5 MB) ================================================== downloaded 30.5 MB trying URL 'https://bioconductor.org/packages/3.11/data/annotation/src/contrib/org.Hs.eg.db_3.11.4.tar.gz' Content type 'application/x-gzip' length 79959831 bytes (76.3 MB) ================================================== downloaded 76.3 MB trying URL 'https://cloud.r-project.org/src/contrib/performance_0.7.2.tar.gz' Content type 'application/x-gzip' length 1817653 bytes (1.7 MB) ================================================== downloaded 1.7 MB trying URL 'https://cloud.r-project.org/src/contrib/pkgcache_1.2.2.tar.gz' Content type 'application/x-gzip' length 164094 bytes (160 KB) ================================================== downloaded 160 KB trying URL 'https://cloud.r-project.org/src/contrib/RcppDate_0.0.3.tar.gz' Content type 'application/x-gzip' length 89092 bytes (87 KB) ================================================== downloaded 87 KB trying URL 'https://cloud.r-project.org/src/contrib/rsconnect_0.8.18.tar.gz' Content type 'application/x-gzip' length 388883 bytes (379 KB) ================================================== downloaded 379 KB trying URL 'https://cloud.r-project.org/src/contrib/rversions_2.1.0.tar.gz' Content type 'application/x-gzip' length 41716 bytes (40 KB) ================================================== downloaded 40 KB trying URL 'https://cloud.r-project.org/src/contrib/shape_1.4.6.tar.gz' Content type 'application/x-gzip' length 677262 bytes (661 KB) ================================================== downloaded 661 KB trying URL 'https://cloud.r-project.org/src/contrib/shinyvalidate_0.1.0.tar.gz' Content type 'application/x-gzip' length 228690 bytes (223 KB) ================================================== downloaded 223 KB trying URL 'https://cloud.r-project.org/src/contrib/swfscMisc_1.5.tar.gz' Content type 'application/x-gzip' length 37001 bytes (36 KB) ================================================== downloaded 36 KB * installing *source* package ‘plot3D’ ... ** package ‘plot3D’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ‘plot3D.rnw’ ‘volcano.rnw’ ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (plot3D) * installing *source* package ‘DEoptimR’ ... ** package ‘DEoptimR’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (DEoptimR) * installing *source* package ‘effectsize’ ... ** package ‘effectsize’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (effectsize) * installing *source* package ‘formatR’ ... ** package ‘formatR’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (formatR) * installing *source* package ‘GO.db’ ... ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (GO.db) * installing *source* package ‘org.Hs.eg.db’ ... ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (org.Hs.eg.db) * installing *source* package ‘performance’ ... ** package ‘performance’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (performance) * installing *source* package ‘pkgcache’ ... ** package ‘pkgcache’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (pkgcache) * installing *source* package ‘RcppDate’ ... ** package ‘RcppDate’ successfully unpacked and MD5 sums checked ** using staged installation ** inst ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RcppDate) * installing *source* package ‘rsconnect’ ... ** package ‘rsconnect’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rsconnect) * installing *source* package ‘rversions’ ... ** package ‘rversions’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rversions) * installing *source* package ‘shape’ ... ** package ‘shape’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ‘shape.Rnw’ using ‘latin1’ ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (shape) * installing *source* package ‘shinyvalidate’ ... ** package ‘shinyvalidate’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (shinyvalidate) * installing *source* package ‘swfscMisc’ ... ** package ‘swfscMisc’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (swfscMisc) The downloaded source packages are in ‘/private/var/folders/0k/bxg5lhr92sq74mb1d446ql540000gp/T/Rtmpol756e/downloaded_packages’ ✔ 271.8 MiB (131s) ❯❯ remotes::install_cran("plumber") Skipping install of 'plumber' from a cran remote, the SHA1 (1.1.0) has not changed since last install. Use `force = TRUE` to force installation ✔ 279.1 MiB ❯❯ ✖ 279.1 MiB ❯❯ q() > R ✔ 73.3 MiB ❯❯ library(plumber) ✔ 89.4 MiB ❯❯ plumb("biogenerics.R") %>% pr_run(port = 8080) Loading required package: parallel Attaching package: ‘BiocGenerics’ The following objects are masked from ‘package:parallel’: clusterApply, clusterApplyLB, clusterCall, clusterEvalQ, clusterExport, clusterMap, parApply, parCapply, parLapply, parLapplyLB, parRapply, parSapply, parSapplyLB The following objects are masked from ‘package:stats’: IQR, mad, sd, var, xtabs The following objects are masked from ‘package:base’: anyDuplicated, append, as.data.frame, basename, cbind, colnames, dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep, grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget, order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank, rbind, Reduce, rownames, sapply, setdiff, sort, table, tapply, union, unique, unsplit, which, which.max, which.min Running plumber API at http://127.0.0.1:8080 Running swagger Docs at http://127.0.0.1:8080/__docs__/ ^C ✔ 89.4 MiB ❯❯ sessioninfo::session_info() ─ Session info ─────────────────────────────────────────────────────────────────────────────────────────────────────── setting value version R version 4.0.2 (2020-06-22) os macOS 10.16 system x86_64, darwin17.0 ui X11 language (EN) collate en_US.UTF-8 ctype en_US.UTF-8 tz America/New_York date 2021-05-26 ─ Packages ─────────────────────────────────────────────────────────────────────────────────────────────────────────── package * version date lib source BiocGenerics * 0.34.0 2020-04-27 [1] Bioconductor cli 2.5.0 2021-04-26 [1] CRAN (R 4.0.2) clisymbols 1.2.0 2017-05-21 [1] CRAN (R 4.0.0) colorout 1.2-2 2020-05-06 [1] Github (jalvesaq/colorout@726d681) crayon 1.4.1 2021-02-08 [1] standard (@1.4.1) desc 1.3.0 2021-03-05 [1] standard (@1.3.0) ellipsis 0.3.2 2021-04-29 [1] CRAN (R 4.0.2) git2r 0.28.0 2021-01-10 [1] CRAN (R 4.0.2) httpuv 1.6.1 2021-05-07 [1] CRAN (R 4.0.2) jsonlite 1.7.2 2020-12-09 [1] CRAN (R 4.0.2) later 1.2.0 2021-04-23 [1] CRAN (R 4.0.2) lifecycle 1.0.0 2021-02-15 [1] CRAN (R 4.0.2) magrittr 2.0.1 2020-11-17 [1] CRAN (R 4.0.2) memuse 4.1-0 2020-02-17 [1] CRAN (R 4.0.0) pkgload 1.2.1 2021-04-06 [1] CRAN (R 4.0.2) plumber * 1.1.0 2021-03-24 [1] CRAN (R 4.0.2) promises 1.2.0.1 2021-02-11 [1] CRAN (R 4.0.2) prompt 1.0.1 2021-03-12 [1] CRAN (R 4.0.2) R6 2.5.0 2020-10-28 [1] CRAN (R 4.0.2) Rcpp 1.0.6 2021-01-15 [1] CRAN (R 4.0.2) rlang 0.4.11.9000 2021-05-19 [1] Github (r-lib/rlang@7021ebe) rprojroot 2.0.2 2020-11-15 [1] CRAN (R 4.0.2) rstudioapi 0.13 2020-11-12 [1] CRAN (R 4.0.2) sessioninfo 1.1.1 2018-11-05 [1] CRAN (R 4.0.0) stringi 1.6.2 2021-05-17 [1] CRAN (R 4.0.2) swagger 3.33.1 2020-10-02 [1] CRAN (R 4.0.2) testthat 3.0.2 2021-02-14 [1] standard (@3.0.2) webutils 1.1 2020-04-28 [1] CRAN (R 4.0.0) withr 2.4.2 2021-04-18 [1] standard (@2.4.2) [1] /Library/Frameworks/R.framework/Versions/4.0/Resources/library ✔ 131.5 MiB ❯❯ ```
schloerke commented 3 years ago

The error is prolly coming from line 70: https://github.com/rstudio/plumber/blob/3d0c4ae8b62a62b5bb6b363a83e8f52889c72a2e/R/openapi-spec.R#L62-L76

I'm wondering if they have a function for their type value. Trying to reproduce...

schloerke commented 3 years ago

There was a PR that fixed how type was retrieved (https://github.com/rstudio/plumber/pull/789).

@blairj09 I bet if they install the master branch remotes::install_github("rstudio/plumber"), then their problem will go away.

blairj09 commented 3 years ago

Doh - should've checked against master. It seems this resolves the problem 😁 Thanks!

sdgd165 commented 1 year ago

一键安装win

sdgd165 commented 1 year ago

苹果笔记本最高是多少

sdgd165 commented 1 year ago

mac一键链接网络

sdgd165 commented 1 year ago

mac一键链接网络

sdgd165 commented 1 year ago

一键破解wlan加密