Description Usage Arguments Examples
View source: R/file_templates.R
cytofin_generate_metadata_template
creates a template metadata .csv file
(with the correct columns and dummy example data) in a specified location.
1 2 3 4 | cytofin_generate_metadata_template(
file_name = "template_metadata.csv",
template_path = getwd()
)
|
file_name |
A string representing the name of the .csv file to be
saved in the directory specified by |
template_path |
A file path or connection where the template file should be written. Defaults to the current working directory |
1 2 3 4 5 6 7 8 9 10 | # specify the path where you'd like to store the template file
my_name <- "metadata_template.csv"
my_path <- file.path("~", "Desktop", "template_folder")
# generate the template file, which then can be edited manually
cytofin_generate_metadata_template(
file_name = my_name,
template_path = my_path
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.