Store transformed data, markdown and html report to a Folder in Synapse.
store_results(
clean_md = clean_md,
filtered_counts = filtered_counts,
biomart_results = biomart_results,
cqn_counts = cqn_counts$E,
de_results = de,
residualized_counts = residualized_counts,
report = report,
syn_names,
data_names,
parent_id,
inputs,
activity_provenance,
rownames = NULL,
config_file = NULL,
report_name = NULL
)
The target containing the metadata data frame.
Defaults to target name constrained by "targets::tar_make"
.
The target containing counts after low gene
expression has been removed. Defaults to target name constrained by
"targets::tar_make()"
.
The target containing gene annotations from
biomart. Defaults to target name constrained by
"targets::tar_make"
.
The target containing Conditional Quantile Normalized
(CQN) counts. Defaults to target name constrained by
"targets::tar_make"
.
The target containing differential expression gene lists. Defaults to target name constrained in the _targets.R file.
The target containing counts adjusted for batch effects. Defaults to target name constrained in the _targets.R file.
The target containing the rendered html document. Defaults to target name constrained in the _targets.R file.
A list of human-readable names for the Synapse entities ordered by `metadata`, `filtered_counts`, `biomart_results`, `cqn_counts`.
A list of identifiers to embed in the file name ordered by `clean_md`, `filtered_counts`, `biomart_results`, `cqn_counts`, `de_results`.
A Synapse Id that corresponds to a project or folder to store output.
A character vector of Synapse Ids to create provenance between output files and input files.
A phrase to describe the data transformation for provenance.
A list of variables to store rownames ordered by `metadata`, `filtered_counts`, `biomart_results`, `cqn_counts`. If not applicable, set as NULL.
Optional. Path to configuration file.
Name of output markdown file.