View source: R/calculate_pipeline.R
ParCalculateTemplate | R Documentation |
Parallel Calculate Drug Combination data in template format
ParCalculateTemplate( template, cores = 1, summary.only = FALSE, seed = NULL, ... )
template |
a dataframe in the format as template. Columns "block_id", "drug_row", "drug_col", "inhibition", "conc_r", "conc_c", "conc_r_unit", "conc_c_unit","cell_line_name", "drug_row", "drug_col" are reqired. |
cores |
A integer. It indicates number of cores would be allocated to the parallel processed |
summary.only |
a logical value. If it is |
seed |
a integer or NULL. It is used to set the random seed to
|
... |
Other arguments required by nested functions. Some important arguments are:
|
A list. It contains 4 tables:
response It contains the modified inhibition value and 4 type of synergy scores of each drug dose response pair.
summary It contains summarized information of each blocks: synergy scores, css, ri, S
curve It contains the coefficients from single drug dose response curve.
surface It contains the smoothed inhibition value and synergy scores of each drug dose response pair.
Jing Tang jing.tang@helsinki.fi Shuyu Zheng shuyu.zheng@helsinki.fi
data <- read.csv(system.file("template.csv", package = "TidyComb"), stringsAsFactors = FALSE) res <- ParCalculateTemplate(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.