subset-methods: subsetting by sampleNames,channels(not for events) methods

Description Usage Arguments Examples

Description

similar to [.

Usage

1
2
3
4
5
## S4 method for signature 'ncdfFlowSet,ANY'
x[i, j, ..., drop = FALSE]

## S4 method for signature 'ncdfFlowList,ANY'
x[i, j, ..., drop = TRUE]

Arguments

x

ncdfFlowSet

i

sample index(or name)

j

column(or channel) index (or name)

...

other arguments not used

drop

logical not used.

Examples

1
2
3
4
5
6
7
data(GvHD)
nc <- ncdfFlowSet(GvHD[1:2])
samples <- sampleNames(nc)
nc[1] 
nc1 <- nc[samples[1]]
#nc1 and nc share the cdf file
all.equal(getFileName(nc1), getFileName(nc))

ncdfFlow documentation built on Nov. 8, 2020, 7:52 p.m.