Description Usage Arguments Details Value GSEA score See Also Examples
View source: R/drugSensitivity.R
Identify compounds that may target the phenotype associated with a user-provided differential expression profile by comparing such against a correlation matrix of gene expression and drug sensitivity.
1 2 3 4 5 6 7 | predictTargetingDrugs(
input,
expressionDrugSensitivityCor,
method = c("spearman", "pearson", "gsea"),
geneSize = 150,
isDrugActivityDirectlyProportionalToSensitivity = NULL
)
|
input |
|
expressionDrugSensitivityCor |
Matrix: correlation matrix of gene
expression (rows) and drug sensitivity (columns) across cell lines.
Pre-prepared gene expression and drug sensitivity associations are
available to download using
|
method |
Character: one or more methods to compare data
( |
geneSize |
Numeric: number of top up-/down-regulated genes to use as
gene sets to test for enrichment in reference data; if a 2-length numeric
vector, the first index is the number of top up-regulated genes and the
second index is the number of down-regulated genes used to create gene
sets; only used if |
isDrugActivityDirectlyProportionalToSensitivity |
Boolean: are the values used for drug activity directly proportional to drug sensitivity? See details. |
If isDrugActivityDirectlyProportionalToSensitivity = NULL
, the
attribute isDrugMetricDirectlyProportionalToSensitivity
of
expressionDrugSensitivityCor
is used (see
loadExpressionDrugSensitivityAssociation()
).
Data table with correlation or GSEA results comparing differential expression values against gene expression and drug sensitivity associations
Weighted connectivity scores (WTCS) are calculated when method
= "gsea"
(https://clue.io/connectopedia/cmap_algorithms).
Other functions related with the prediction of targeting drugs:
as.table.referenceComparison()
,
listExpressionDrugSensitivityAssociation()
,
loadExpressionDrugSensitivityAssociation()
,
plot.referenceComparison()
,
plotTargetingDrugsVSsimilarPerturbations()
1 2 3 4 5 6 7 8 | # Example of a differential expression profile
data("diffExprStat")
# Load expression and drug sensitivity association derived from GDSC data
gdsc <- loadExpressionDrugSensitivityAssociation("GDSC 7")
# Predict targeting drugs on a differential expression profile
predictTargetingDrugs(diffExprStat, gdsc)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.