Back to Multiple platform build/check report for BioC 3.23:   simplified   long
ABCDEFGHIJKLMNOPQ[R]STUVWXYZ

This page was generated on 2026-04-09 11:36 -0400 (Thu, 09 Apr 2026).

HostnameOSArch (*)R versionInstalled pkgs
nebbiolo1Linux (Ubuntu 24.04.4 LTS)x86_644.6.0 alpha (2026-04-05 r89794) 4912
kjohnson3macOS 13.7.7 Venturaarm64R Under development (unstable) (2026-03-26 r89717) -- "Unsuffered Consequences" 4623
Click on any hostname to see more info about the system (e.g. compilers)      (*) as reported by 'uname -p', except on Windows and Mac OS X

Package 1795/2388HostnameOS / ArchINSTALLBUILDCHECKBUILD BIN
RFGeneRank 0.99.4  (landing page)
Abdulaziz Albeshri
Snapshot Date: 2026-04-08 13:40 -0400 (Wed, 08 Apr 2026)
git_url: https://git.bioconductor.org/packages/RFGeneRank
git_branch: devel
git_last_commit: 7bc34fc
git_last_commit_date: 2026-04-06 16:26:11 -0400 (Mon, 06 Apr 2026)
nebbiolo1Linux (Ubuntu 24.04.4 LTS) / x86_64  OK    OK    OK  YES
kjohnson3macOS 13.7.7 Ventura / arm64  OK    OK    ERROR    OK  
See other builds for RFGeneRank in R Universe.


CHECK results for RFGeneRank on kjohnson3

To the developers/maintainers of the RFGeneRank package:
- Allow up to 24 hours (and sometimes 48 hours) for your latest push to git@git.bioconductor.org:packages/RFGeneRank.git to reflect on this report. See Troubleshooting Build Report for more information.
- Use the following Renviron settings to reproduce errors and warnings.
- If 'R CMD check' started to fail recently on the Linux builder(s) over a missing dependency, add the missing dependency to 'Suggests:' in your DESCRIPTION file. See Renviron.bioc for more information.

raw results


Summary

Package: RFGeneRank
Version: 0.99.4
Command: /Library/Frameworks/R.framework/Resources/bin/R CMD check --install=check:RFGeneRank.install-out.txt --library=/Library/Frameworks/R.framework/Resources/library --no-vignettes --timings RFGeneRank_0.99.4.tar.gz
StartedAt: 2026-04-08 21:46:26 -0400 (Wed, 08 Apr 2026)
EndedAt: 2026-04-08 21:47:54 -0400 (Wed, 08 Apr 2026)
EllapsedTime: 88.2 seconds
RetCode: 1
Status:   ERROR  
CheckDir: RFGeneRank.Rcheck
Warnings: NA

Command output

##############################################################################
##############################################################################
###
### Running command:
###
###   /Library/Frameworks/R.framework/Resources/bin/R CMD check --install=check:RFGeneRank.install-out.txt --library=/Library/Frameworks/R.framework/Resources/library --no-vignettes --timings RFGeneRank_0.99.4.tar.gz
###
##############################################################################
##############################################################################


* using log directory ‘/Users/biocbuild/bbs-3.23-bioc/meat/RFGeneRank.Rcheck’
* using R Under development (unstable) (2026-03-26 r89717)
* using platform: aarch64-apple-darwin23
* R was compiled by
    Apple clang version 17.0.0 (clang-1700.3.19.1)
    GNU Fortran (GCC) 14.2.0
* running under: macOS Tahoe 26.3.1
* using session charset: UTF-8
* current time: 2026-04-09 01:46:26 UTC
* using option ‘--no-vignettes’
* checking for file ‘RFGeneRank/DESCRIPTION’ ... OK
* this is package ‘RFGeneRank’ version ‘0.99.4’
* package encoding: UTF-8
* checking package namespace information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking if there is a namespace ... OK
* checking for hidden files and directories ... OK
* checking for portable file names ... OK
* checking for sufficient/correct file permissions ... OK
* checking whether package ‘RFGeneRank’ can be installed ... OK
* checking installed package size ... OK
* checking package directory ... OK
* checking ‘build’ directory ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... OK
* checking for left-over files ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking code files for non-ASCII characters ... OK
* checking R files for syntax errors ... OK
* checking whether the package can be loaded ... OK
* checking whether the package can be loaded with stated dependencies ... OK
* checking whether the package can be unloaded cleanly ... OK
* checking whether the namespace can be loaded with stated dependencies ... OK
* checking whether the namespace can be unloaded cleanly ... OK
* checking whether startup messages can be suppressed ... OK
* checking dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... OK
* checking Rd files ... OK
* checking Rd metadata ... OK
* checking Rd cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... OK
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking files in ‘vignettes’ ... OK
* checking examples ... ERROR
Running examples in ‘RFGeneRank-Ex.R’ failed
The error most likely occurred in:

> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: validate_genes
> ### Title: Validate a ranked gene set with alternate learners via k-fold CV
> ### Aliases: validate_genes
> 
> ### ** Examples
> 
> # Toy expression matrix: 10 genes x 12 samples
> expr <- matrix(
+   stats::rnorm(10 * 12),
+   nrow = 10,
+   dimnames = list(
+     paste0("gene", 1:10),
+     paste0("sample", 1:12)
+   )
+ )
> 
> # Binary labels as a factor (balanced)
> label <- factor(rep(c("A", "B"), each = 6))
> 
> se <- SummarizedExperiment::SummarizedExperiment(
+   assays  = list(expr = expr),
+   colData = S4Vectors::DataFrame(label = label)
+ )
> 
> # Use the first 5 genes as a toy signature
> genes <- rownames(expr)[1:5]
> 
> # Validate using ranger only (fast and robust for examples)
> res <- validate_genes(
+   se        = se,
+   genes     = genes,
+   methods   = "ranger",
+   k         = 3,
+   seed      = 1,
+   label_col = "label"
+ )
Error in choose_threshold(p_use, y, thr_metric, cost) : 
  'list' object cannot be coerced to type 'double'
Calls: validate_genes -> lapply -> FUN -> choose_threshold
Execution halted
* checking for unstated dependencies in ‘tests’ ... OK
* checking tests ...
  Running ‘testthat.R’
 ERROR
Running the tests in ‘tests/testthat.R’ failed.
Last 13 lines of output:
   3.     └─RFGeneRank (local) FUN(X[[i]], ...)
   4.       └─RFGeneRank (local) choose_threshold(p_use, y, thr_metric, cost)
  ── Error ('test-validate_genes.R:301:3'): validate_genes runs ranger path and returns expected components ──
  Error in `choose_threshold(p_use, y, thr_metric, cost)`: 'list' object cannot be coerced to type 'double'
  Backtrace:
      ▆
   1. └─RFGeneRank::validate_genes(...) at test-validate_genes.R:301:3
   2.   └─base::lapply(methods, run_one_method)
   3.     └─RFGeneRank (local) FUN(X[[i]], ...)
   4.       └─RFGeneRank (local) choose_threshold(p_use, y, thr_metric, cost)
  
  [ FAIL 2 | WARN 9 | SKIP 5 | PASS 486 ]
  Error:
  ! Test failures.
  Execution halted
* checking for unstated dependencies in vignettes ... OK
* checking package vignettes ... OK
* checking running R code from vignettes ... SKIPPED
* checking re-building of vignette outputs ... SKIPPED
* checking PDF version of manual ... OK
* DONE

Status: 2 ERRORs
See
  ‘/Users/biocbuild/bbs-3.23-bioc/meat/RFGeneRank.Rcheck/00check.log’
for details.


Installation output

RFGeneRank.Rcheck/00install.out

##############################################################################
##############################################################################
###
### Running command:
###
###   /Library/Frameworks/R.framework/Resources/bin/R CMD INSTALL RFGeneRank
###
##############################################################################
##############################################################################


* installing to library ‘/Library/Frameworks/R.framework/Versions/4.6/Resources/library’
* installing *source* package ‘RFGeneRank’ ...
** this is package ‘RFGeneRank’ version ‘0.99.4’
** using staged installation
** R
** 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 (RFGeneRank)

Tests output

RFGeneRank.Rcheck/tests/testthat.Rout.fail


R Under development (unstable) (2026-03-26 r89717) -- "Unsuffered Consequences"
Copyright (C) 2026 The R Foundation for Statistical Computing
Platform: aarch64-apple-darwin23

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(testthat)
> library(RFGeneRank)
RFGeneRank: Cross-validated, stable predictive gene ranking for transcriptomics
> 
> test_check("RFGeneRank")
Found2batches
Adjusting for0covariate(s) or covariate level(s)
Standardizing Data across genes
Fitting L/S model and finding priors
Finding parametric adjustments
Adjusting the Data

Setting levels: control = Case, case = Control
Setting direction: controls < cases
Setting levels: control = Case, case = Control
Setting direction: controls < cases
Setting levels: control = Case, case = Control
Setting direction: controls > cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Setting levels: control = A, case = B
Setting direction: controls < cases
Batch~label: p=1, Cramer's V=0.000
Found2batches
Adjusting for1covariate(s) or covariate level(s)
Standardizing Data across genes
Fitting L/S model and finding priors
Finding parametric adjustments
Adjusting the Data


'select()' returned 1:1 mapping between keys and columns
'select()' returned 1:1 mapping between keys and columns
'select()' returned 1:1 mapping between keys and columns
'select()' returned 1:1 mapping between keys and columns
'select()' returned 1:1 mapping between keys and columns
'select()' returned 1:1 mapping between keys and columns
Loading required package: MatrixGenerics
Loading required package: matrixStats

Attaching package: 'MatrixGenerics'

The following objects are masked from 'package:matrixStats':

    colAlls, colAnyNAs, colAnys, colAvgsPerRowSet, colCollapse,
    colCounts, colCummaxs, colCummins, colCumprods, colCumsums,
    colDiffs, colIQRDiffs, colIQRs, colLogSumExps, colMadDiffs,
    colMads, colMaxs, colMeans2, colMedians, colMins, colOrderStats,
    colProds, colQuantiles, colRanges, colRanks, colSdDiffs, colSds,
    colSums2, colTabulates, colVarDiffs, colVars, colWeightedMads,
    colWeightedMeans, colWeightedMedians, colWeightedSds,
    colWeightedVars, rowAlls, rowAnyNAs, rowAnys, rowAvgsPerColSet,
    rowCollapse, rowCounts, rowCummaxs, rowCummins, rowCumprods,
    rowCumsums, rowDiffs, rowIQRDiffs, rowIQRs, rowLogSumExps,
    rowMadDiffs, rowMads, rowMaxs, rowMeans2, rowMedians, rowMins,
    rowOrderStats, rowProds, rowQuantiles, rowRanges, rowRanks,
    rowSdDiffs, rowSds, rowSums2, rowTabulates, rowVarDiffs, rowVars,
    rowWeightedMads, rowWeightedMeans, rowWeightedMedians,
    rowWeightedSds, rowWeightedVars

Loading required package: GenomicRanges
Loading required package: stats4
Loading required package: BiocGenerics
Loading required package: generics

Attaching package: 'generics'

The following objects are masked from 'package:base':

    as.difftime, as.factor, as.ordered, intersect, is.element, setdiff,
    setequal, union


Attaching package: 'BiocGenerics'

The following objects are masked from 'package:stats':

    IQR, mad, sd, var, xtabs

The following objects are masked from 'package:base':

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

Loading required package: S4Vectors

Attaching package: 'S4Vectors'

The following object is masked from 'package:RFGeneRank':

    params

The following object is masked from 'package:utils':

    findMatches

The following objects are masked from 'package:base':

    I, expand.grid, unname

Loading required package: IRanges
Loading required package: Seqinfo
Loading required package: Biobase
Welcome to Bioconductor

    Vignettes contain introductory material; view with
    'browseVignettes()'. To cite Bioconductor, see
    'citation("Biobase")', and for packages 'citation("pkgname")'.


Attaching package: 'Biobase'

The following object is masked from 'package:MatrixGenerics':

    rowMedians

The following objects are masked from 'package:matrixStats':

    anyMissing, rowMedians

Batch~label: p=1, Cramer's V=0.000
Saving _problems/test-validate_genes-112.R
Saving _problems/test-validate_genes-310.R
Batch~label: p=1, Cramer's V=0.000
[ FAIL 2 | WARN 9 | SKIP 5 | PASS 486 ]

══ Skipped tests (5) ═══════════════════════════════════════════════════════════
• On CRAN (1): 'test.R:2:3'
• This branch is only hit when org.Hs.eg.db is absent (2):
  'test-plots.R:745:3', 'test-plots.R:764:3'
• empty test (1): 'test-plots.R:1352:1'
• length(candidates) == 0 is TRUE (1): 'test-check_utils.R:66:3'

══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-validate_genes.R:103:3'): validate_genes runs with ranger and returns summary plus method entry ──
Error in `choose_threshold(p_use, y, thr_metric, cost)`: 'list' object cannot be coerced to type 'double'
Backtrace:
    ▆
 1. └─RFGeneRank::validate_genes(...) at test-validate_genes.R:103:3
 2.   └─base::lapply(methods, run_one_method)
 3.     └─RFGeneRank (local) FUN(X[[i]], ...)
 4.       └─RFGeneRank (local) choose_threshold(p_use, y, thr_metric, cost)
── Error ('test-validate_genes.R:301:3'): validate_genes runs ranger path and returns expected components ──
Error in `choose_threshold(p_use, y, thr_metric, cost)`: 'list' object cannot be coerced to type 'double'
Backtrace:
    ▆
 1. └─RFGeneRank::validate_genes(...) at test-validate_genes.R:301:3
 2.   └─base::lapply(methods, run_one_method)
 3.     └─RFGeneRank (local) FUN(X[[i]], ...)
 4.       └─RFGeneRank (local) choose_threshold(p_use, y, thr_metric, cost)

[ FAIL 2 | WARN 9 | SKIP 5 | PASS 486 ]
Error:
! Test failures.
Execution halted

Example timings

RFGeneRank.Rcheck/RFGeneRank-Ex.timings

nameusersystemelapsed
GeneRankFit-accessors0.0020.0000.002
align_datasets0.0310.0030.037
apply_calibration000
calibrate_oof000
factor_dependence0.0050.0000.005
id_map0.5590.0260.598
plot_confusion_heatmap0.3950.0020.399
plot_embed0.0010.0010.001
plot_embed_expr0.010.000.01
plot_importance0.4250.0710.471
plot_roc0.1230.0220.128
plot_roc_multi0.1500.0010.151
plot_shap_dependence0.1290.0220.141
plot_sign_importance0.0010.0000.000
prepare_data0.0060.0010.007
rank_genes0.0570.0350.061
rfgr_crossval0.0070.0010.007
rfgr_plot_suite0.1970.0140.209
shap_train_ranger0.0000.0000.001
sign_importance0.0020.0000.002
top_genes0.0010.0000.000