Description Usage Arguments Value Examples
View source: R/profileCombinations.R
Returns the average of every possible two response profile non-redundant combination from the input matrix
1 | profileCombinations(responseProfiles)
|
responseProfiles |
A matrix of response profiles for drugs (rows are genes, columns are drugs) |
A matrix with genes in the rows and profiles combination in the columns. The values represent the expected transcriptional response of the cells (used as input of retriever) to a drug combination.
1 2 3 4 5 6 7 8 9 10 11 | # Loading robust profiles across different breast cancer cell lines generated by retriever.
# BRCA <- retriever(cellLines = c('MDAMB231', 'MCF7', 'SKBR3', 'HS578T', 'BT20'))
BRCA <- read.csv(system.file("BRCA.csv",package="retriever"), row.names = 1)
dim(BRCA)
# [1] 1001 125
# Computing response profiles combinations
combinationsBRCA <- profileCombinations(BRCA)
dim(combinationsBRCA)
# [1] 1001 7750
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.