Bliss: Calculate Bliss Synergy Score

Description Usage Arguments Details Value Author(s) References Examples

View source: R/calculate_synergy_score.R

Description

Bliss calculates the synergy score matrix for a block of drug combination by using a drug interaction reference model introduced by C. I. Bliss in 1939.

Usage

1
Bliss(response, single_drug_data)

Arguments

response

A data frame. It must contain the columns: "conc1", "conc2", ..., for the concentration of the combined drugs and "response" for the observed %inhibition at certain combination.

single_drug_data

A list or NULL. It contains the monotherapy dose response data for all the tested drugs in the inputted block. If it is NULL, the data will extract the dose response table from inputted response table.

Details

This model is a reference model for evaluating the combination effect of two drugs. The basic assumption of this model is "The expected effect of two drugs acting independently". The Bliss reference effect y = 1 - product_all_drug(1-%Inhibition) * 100.

Value

A data frame containing the concentrations for drugs, reference effect and synergy score estimated by Bliss model.

Author(s)

References

Examples

1
2
3
4
5
data("mathews_screening_data")
data <- ReshapeData(mathews_screening_data)
response <- data$response[data$response$block_id == 1,
                          c("conc1", "conc2", "response")]
Bliss.score <- Bliss(response)

synergyfinder documentation built on April 4, 2021, 6 p.m.