ContrastDistMat,tpcaResult-method {Rtpca} | R Documentation |
Extract ContrastDistMat
## S4 method for signature 'tpcaResult' ContrastDistMat(object)
object |
an object of class tpcaResult |
a matrix containing the constrast distance matrix of all pariwise protein-protein melting curve distances computed from a TPP experiment
m1 <- matrix(1:12, ncol = 4) m2 <- matrix(2:13, ncol = 4) m3 <- matrix(c(2:10, 1:7), ncol = 4) rownames(m1) <- 1:3 rownames(m2) <- 2:4 rownames(m3) <- 2:5 mat_list <- list( m1, m2, m3 ) tpcaObj <- new("tpcaResult", ObjList = mat_list) ContrastDistMat(tpcaObj)