HSA: Calculate HSA Synergy Score

Description Usage Arguments Details Value Author(s) References Examples

View source: R/calculate_synergy_score.R

Description

HSA calculates the synergy score matrix for a block of drug combination by using Highest Single Agent (HSA) reference model.

Usage

1
HSA(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 reference effect of drug combination is the maximal single drug effect".

Value

A data frame containing the concentrations for drugs, reference effect and synergy score estimated by HSA 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")]
HSA.score <- HSA(response)

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