CNV.data-class: CNV.data class

Description Usage Arguments Details Value Author(s) Examples

Description

Intensities of one or multiple samples are stored in this class.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## S4 method for signature 'CNV.data'
show(object)

## S4 method for signature 'CNV.data,ANY,ANY,ANY'
x[i]

## S4 method for signature 'CNV.data'
names(x)

## S4 replacement method for signature 'CNV.data'
names(x) <- value

Arguments

object

CNV.data object

x

CNV.data object (defined by Extract generic).

i

index. logical, numeric or character.

value

Replacement names.

Details

Use CNV.load to create.

Value

CNV.data class.

Author(s)

Volker Hovestadt conumee@hovestadt.bio

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# create object
library(minfiData)
data(MsetEx)

d <- CNV.load(MsetEx)

# general information
d
show(d)

# show or replace sample names
names(d)
names(d) <- toupper(names(d))

# subset samples
d[1:2]

conumee documentation built on Nov. 8, 2020, 6 p.m.