Skip to contents

Convert a data.frame to config.yml

Usage

df_to_config(x, parameter_file = "config.yml")

Arguments

x

a data.frame with two columns (parameters and value)

parameter_file

name for the config file. Default = config.yml

Value

a config.yml file

Examples

if (FALSE) { # \dontrun{
df <- data.frame(
    parameters = c("expression_data_file", "num_simulated_cells"),
    value = c("fake1_expr.Rdata", 10000))
df_to_config(df)
} # }