Checks whether the metadata_analyte file follows the required guidelines.
check_metadata_analyte(
df,
return_n_issues = FALSE,
validate_uniprot = FALSE,
verbose = TRUE
)
(data.frame) The metadata_analyte data frame to check.
(logical) If TRUE
, returns the number of issues found.
(logical) If TRUE
, checks if all Uniprot IDs are valid by connecting to the Uniprot database. Note: This may take several minutes depending on the number of IDs.
(logical) If TRUE
(default), displays messages during the checking process.
(int) The number of issues identified if return_n_issues
is TRUE
.
if (FALSE) { # \dontrun{
check_metadata_analyte(df = metadata_analyte)
} # }