The mass_dataset class is designed to hold various types of data
related to mass spectrometry experiments, including expression data,
MS2 data, annotation tables, and other related information.
Slots
expression_dataA data.frame containing the expression data.
ms2_dataA list containing MS2 data.
annotation_tableA data.frame containing annotation information.
sample_infoA data.frame containing sample information.
variable_infoA data.frame containing variable information.
sample_info_noteA data.frame containing notes about the sample information.
variable_info_noteA data.frame containing notes about the variable information.
process_infoA list containing information about the data processing steps.
other_filesA list containing other related files.
versionA character string indicating the version of the dataset.
activatedA character string indicating which slot is currently activated for manipulation.
Examples
if (FALSE) { # \dontrun{
data("expression_data")
data("sample_info")
data("variable_info")
new_data <- create_mass_dataset(
expression_data = expression_data,
sample_info = sample_info,
variable_info = variable_info
)
new_data
} # }
