File: utils.R

package info (click to toggle)
r-bioc-biocgenerics 0.52.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 772 kB
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 785 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
### =========================================================================
### Miscellaneous low-level utils
### -------------------------------------------------------------------------
###

### Like toString() but also injects names(x) in the returned string.
### For example with:
###   x <- alist(b = 99, 98:96, zz)
### to_string(x) returns:
###   "b = 99, 98:96, zz"
to_string <- function(x)
{
    x_names <- names(x)
    x <- as.character(x)
    if (!is.null(x_names)) {
        x_names <- paste0(x_names, ifelse(x_names == "", "", " = "))
        x <- paste0(x_names, x)
    }
    paste(x, collapse=", ")
}

unused_arguments_msg <- function(dots)
{
    msg <- "unused argument"
    if (length(dots) >= 2L)
        msg <- c(msg, "s")
    c(msg, " (", to_string(dots), ")")
}