TCA.accessors {TCseq} | R Documentation |
Accessors are provided to extract design
, genomicFeature
,
tcTable
, clustResults
slots of a TCA class. The design
slot stores experimental information of samples/libraries, the
genomicFeature
slot stores genomic coordinates of features, the
tcTable
slot stores time couse data as a matrix, where rows are
genomic features and columns time points. The clustResults
slot
stores results of clustering analysis as a clust
object.
## S4 method for signature 'TCA' design(object) genomicFeature(object) tcTable(object) ## S4 method for signature 'TCA' tcTable(object) clustResults(object) ## S4 method for signature 'TCA' clustResults(object)
object |
|
design
returns a data frame. genomicFeature
returns a data frame.
tcTable
returns a numeric matrix. clustResults
returns a
clust
object, see clust
for details.
Mengjun Wu
data(tca_ATAC) genomicFeature(tca_ATAC) tcTable(tca_ATAC)