CalculateSynergy {synergyfinder}R Documentation

Calculate the synergy scores for drug combinations

Description

CalculateSynergy is the main function for calculating synergy scores based on model(ZIP, Bliss, Loewe, and HSA) fron one dose-response matrix.

Usage

CalculateSynergy(data, method = "ZIP", adjusted = TRUE)

Arguments

data

a list object generated by function ReshapeData.

method

a parameter to specify which models to use to calculate the synergy scores. Choices are "ZIP", "Bliss", "HSA" and "Loewe". Defaults to "ZIP".

adjusted

a logical value. If it is TRUE, the 'adjusted.response.mats' will be used to calculate synergy scores. If it is FALSE, the raw data ('dose.response.mats') will be used to calculate synergy scores.

Value

a list. It contains 4 elements:

Author(s)

Examples

data("mathews_screening_data")
data <- ReshapeData(mathews_screening_data)
scores <- CalculateSynergy(data)

[Package synergyfinder version 2.0.12 Index]