CorrectBaseLine: Base Line Correction for Drug Combination Matrix

Description Usage Arguments Value Author(s) Examples

View source: R/calculate_synergy_score.R

Description

CorrectBaseLine adjusts the base line of drug combination dose-response matrix to make it closer to 0.

Usage

1
CorrectBaseLine(response, method = c("non", "part", "all"))

Arguments

response

A drug cobination dose-response matrix. It's column name and row name are representing the concerntrations of drug added to column and row, respectively. The values in matrix indicate the inhibition rate to cell growth.

method

A character value. It indicates the method used for baseline correction. Available values are:

  • non No baseline correction.

  • part Adjust only the negative values in the matrix.

  • all Adjust all values in the matrix.

Value

A matrix which base line have been adjusted.

Author(s)

Examples

1
2
3
4
data("mathews_screening_data")
data <- ReshapeData(mathews_screening_data)
response <- data$response[data$response$block_id == 1, ]
adjusted <- CorrectBaseLine(response, method = "part")

Example output



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