Description Usage Arguments Value Examples
Extract CommonFeatures
1 2 | ## S4 method for signature 'tpcaResult'
CommonFeatures(object)
|
object |
and object of class tpcaResult |
a vector of common features across replicates
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 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
)
ppi_anno <- tibble(
x = "2",
y = "3",
combined_score = 700,
pair = "2:3")
tpcaObj <- runTPCA(
objList = mat_list,
complexAnno = NULL,
ppiAnno = ppi_anno
)
CommonFeatures(tpcaObj)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.