biomarker_synergy_analysis: Biomarker analysis per synergy predicted

Description Usage Arguments Value See Also

View source: R/general.R

Description

Use this function to discover synergy biomarkers, i.e. nodes whose activity and/or boolean equation parameterization (link operator) affect the manifestation of synergies in the boolean models. Models are classified to groups based on whether they predict or not each of the predicted synergies.

Usage

1
2
3
4
5
6
7
8
9
biomarker_synergy_analysis(
  model.predictions,
  models.stable.state,
  models.link.operator = NULL,
  observed.synergies,
  threshold,
  calculate.subsets.stats = FALSE,
  penalty = 0.1
)

Arguments

model.predictions

a data.frame object with rows the models and columns the drug combinations. Possible values for each model-drug combination element are either 0 (no synergy predicted), 1 (synergy was predicted) or NA (couldn't find stable states in either the drug combination inhibited model or in any of the two single-drug inhibited models).

models.stable.state

a data.frame (nxm) with n models and m nodes. The row names specify the models' names whereas the column names specify the network nodes (gene, proteins, etc.). Possible values for each model-node element can be between 0 (inactive node) and 1 (active node) inclusive. Note that the rows (models) have to be in the same order as in the model.predictions parameter.

models.link.operator

a data.frame (nxm) with n models and m nodes. The row names specify the models' names (same order as in the model.predictions parameter) whereas the column names specify the network nodes (gene, proteins, etc.). Possible values for each model-node element are either 0 (AND NOT link operator), 1 (OR NOT link operator) or 0.5 if the node is not targeted by both activating and inhibiting regulators (no link operator). Default value: NULL (no analysis on the models parameterization regarding the mutation of the boolean equation link operator will be done).

observed.synergies

a character vector with elements the names of the drug combinations that were found as synergistic. This should be a subset of the tested drug combinations, that is the column names of the model.predictions parameter.

threshold

numeric. A number in the [0,1] interval, above which (or below its negative value) a biomarker will be registered in the returned result. Values closer to 1 translate to a more strict threshold and thus less biomarkers are found.

calculate.subsets.stats

logical. If TRUE, then the results will include a vector of integers, representing the number of models that predicted every subset of the given observed.synergies (where at least one model predicts every synergy in the subset). The default value is FALSE, since the powerset of the predicted observed.synergies can be very large to compute.

penalty

value between 0 and 1 (inclusive). A value of 0 means no penalty and a value of 1 is the strickest possible penalty. Default value is 0.1. This penalty is used as part of a weighted term to the difference in a value of interest (e.g. activity or link operator difference) between two group of models, to account for the difference in the number of models from each respective model group.

Value

a list with various elements:

See Also

Other general analysis functions: biomarker_mcc_analysis(), biomarker_tp_analysis()


emba documentation built on Jan. 7, 2021, 9:09 a.m.