Last updated on 2026-04-26 09:49:36 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.0 | 7.04 | 175.90 | 182.94 | ERROR | |
| r-devel-linux-x86_64-debian-gcc | 0.1.0 | 4.82 | 124.18 | 129.00 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.1.0 | 12.00 | 283.35 | 295.35 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.1.0 | 13.00 | 308.73 | 321.73 | OK | |
| r-patched-linux-x86_64 | 0.1.0 | 8.76 | 164.17 | 172.93 | ERROR | |
| r-release-linux-x86_64 | 0.1.0 | 6.77 | 163.01 | 169.78 | ERROR | |
| r-release-macos-arm64 | 0.1.0 | 2.00 | 51.00 | 53.00 | OK | |
| r-release-macos-x86_64 | 0.1.0 | 5.00 | 218.00 | 223.00 | OK | |
| r-release-windows-x86_64 | 0.1.0 | 10.00 | 214.00 | 224.00 | OK | |
| r-oldrel-macos-arm64 | 0.1.0 | 2.00 | 51.00 | 53.00 | OK | |
| r-oldrel-macos-x86_64 | 0.1.0 | 5.00 | 251.00 | 256.00 | OK | |
| r-oldrel-windows-x86_64 | 0.1.0 | 13.00 | 276.00 | 289.00 | OK |
Version: 0.1.0
Check: examples
Result: ERROR
Running examples in ‘diagFDR-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: dfdr_render_report
> ### Title: Render a human-readable HTML report from 'dfdr_run_all' output
> ### Aliases: dfdr_render_report
>
> ### ** Examples
>
> # A minimal example that renders a report from a toy dataset.
> # This example is conditional because rmarkdown is in Suggests.
> if (requireNamespace("rmarkdown", quietly = TRUE)) {
+ library(tibble)
+ tmpdir <- tempdir()
+
+ set.seed(1)
+ n <- 3000
+ df <- tibble(
+ id = as.character(seq_len(n)),
+ run = "run1",
+ is_decoy = sample(c(FALSE, TRUE), n, replace = TRUE, prob = c(0.95, 0.05)),
+ score = rnorm(n),
+ q = pmin(1, rank(-score) / n),
+ pep = NA_real_
+ )
+ x <- as_dfdr_tbl(df, unit = "psm", scope = "global", q_source = "toy")
+
+ diag <- dfdr_run_all(
+ xs = list(toy = x),
+ alpha_main = 0.01,
+ compute_pseudo_pvalues = FALSE
+ )
+
+ # Render to a temporary directory (does not open a browser during checks)
+ dfdr_render_report(diag, out_dir = tmpdir, open = FALSE)
+ }
Warning in file(con, "w") :
cannot open file 'dfdr_report.knit.md': Read-only file system
Error in file(con, "w") : cannot open the connection
Calls: dfdr_render_report ... <Anonymous> -> <Anonymous> -> write_utf8 -> writeLines -> file
Execution halted
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-patched-linux-x86_64
Version: 0.1.0
Check: examples
Result: ERROR
Running examples in ‘diagFDR-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: dfdr_render_report
> ### Title: Render a human-readable HTML report from 'dfdr_run_all' output
> ### Aliases: dfdr_render_report
>
> ### ** Examples
>
> # A minimal example that renders a report from a toy dataset.
> # This example is conditional because rmarkdown is in Suggests.
> if (requireNamespace("rmarkdown", quietly = TRUE)) {
+ library(tibble)
+ tmpdir <- tempdir()
+
+ set.seed(1)
+ n <- 3000
+ df <- tibble(
+ id = as.character(seq_len(n)),
+ run = "run1",
+ is_decoy = sample(c(FALSE, TRUE), n, replace = TRUE, prob = c(0.95, 0.05)),
+ score = rnorm(n),
+ q = pmin(1, rank(-score) / n),
+ pep = NA_real_
+ )
+ x <- as_dfdr_tbl(df, unit = "psm", scope = "global", q_source = "toy")
+
+ diag <- dfdr_run_all(
+ xs = list(toy = x),
+ alpha_main = 0.01,
+ compute_pseudo_pvalues = FALSE
+ )
+
+ # Render to a temporary directory (does not open a browser during checks)
+ dfdr_render_report(diag, out_dir = tmpdir, open = FALSE)
+ }
Warning in file(con, "w") :
cannot open file 'dfdr_report.knit.md': Read-only file system
Error in file(con, "w") : cannot open the connection
Calls: dfdr_render_report ... <Anonymous> -> <Anonymous> -> write_utf8 -> writeLines -> file
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
dfdr_plot_fdrhat_pi0 3.005 0.191 5.46
Flavor: r-release-linux-x86_64