Bliss: Calculate Bliss Synergy Score

View source: R/calculate_synergy_score.R

BlissR Documentation

Calculate Bliss Synergy Score

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

Bliss(response)

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.

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

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)

shuyuzheng/synergyfinder documentation built on Feb. 20, 2023, 11:33 p.m.