View source: R/MetAlyzer_handler.R
updateMetaData | R Documentation |
This function adds another column to filtered meta_data.
updateMetaData(metalyzer_se, ..., inplace = FALSE)
metalyzer_se |
SummarizedExperiment |
... |
Use ´new_col_name = new_column´ to rename selected variables |
inplace |
If FALSE, return a copy. Otherwise, do operation inplace and return None. |
An updated SummarizedExperiment
metalyzer_se <- MetAlyzer_dataset(file_path = example_extraction_data())
metalyzer_se <- updateMetaData(
metalyzer_se,
Date = Sys.Date(), Analyzed = TRUE
)
# or
updateMetaData(
metalyzer_se,
Date = Sys.Date(), Analyzed = TRUE, inplace = TRUE
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.