defunct: Defunct functions

Description Usage Arguments Value See Also Examples

Description

Defunct functions

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
relevel(x, ref, ...)

## S3 method for class 'DataFrame'
relevel(x, ref = NULL, ...)

## S3 method for class 'Ranges'
relevel(x, ref = NULL, ...)

## S3 method for class 'SummarizedExperiment'
relevel(x, ref = NULL, ...)

## S4 method for signature 'SummarizedExperiment'
flatFiles(object)

Arguments

x

Object.

ref

Unsupported.

...

Additional arguments.

object

Object.

Value

.Defunct.

See Also

Defunct.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
a <- function(...) {
    .Defunct("b")
}

withCallingHandlers(
    expr = tryCatch(
        expr = a(1L),
        error = function(e) {
            print(e)
            invisible()
        }
    )
)

steinbaugh/transformer documentation built on Jan. 9, 2020, 12:53 p.m.