| sampleInfo {icetea} | R Documentation |
Retrieve and replace sample information of a CapSet object
sampleInfo(object, ...) sampleInfo(object, ...) <- value ## S4 method for signature 'CapSet' sampleInfo(object) ## S4 replacement method for signature 'CapSet' sampleInfo(object) <- value
object |
The |
... |
Additional options |
value |
Replacement DataFrame object |
sample information data.frame
# load a previously saved CapSet object
cs <- exampleCSobject()
# get sampleinfo
si <- sampleInfo(cs)
# modify
si$samples <- paste0("sample_", seq_along(1:nrow(si)) )
# replace
sampleInfo(cs) <- si