Description Usage Arguments Value Author(s) Examples
View source: R/calculate_sensitivity_score.R
CalculateSynergy
is the main function for calculating synergy scores
based on model(ZIP, Bliss, Loewe, and HSA) fron one dose-response
matrix.
1 2 3 4 5 6 7 | CalculateSensitivity(
data,
adjusted = TRUE,
correct_baseline = "non",
iteration = 10,
seed = 123
)
|
data |
A list object generated by function |
adjusted |
A logical value. If it is |
correct_baseline |
A character value. It indicates the method used for baseline correction. Available values are:
|
iteration |
An integer. It indicates the number of iterations for synergy scores calculation on data with replicates. |
seed |
An integer or NULL. It is used to set the random seed in synergy scores calculation on data with replicates. |
This function will add columns into data$drug_pairs
table.
The columns are:
ic50_1/2/... Relative IC50 for drug 1, 2, ...
ri_1/2/... Relative Inhibition (RI) for drug 1, 2, ...
css1_ic502/... CSS score of drug 1 while fixing drug 2 at its IC50.
css Over all CSS score for the whole block. It's the mean value of the CSS for all drug pairs in the combination.
If there are replicates in the block, this function will add one table named
as "sensitivity_scores_statistics" for the statistics of the values
mentioned about into the input data
list.
Shuyu Zheng shuyu.zheng@helsinki.fi
Jing Tang jing.tang@helsinki.fi
1 2 3 | data("mathews_screening_data")
data <- ReshapeData(mathews_screening_data)
data <- CalculateSensitivity(data)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.