#' @title Decorate masses
#'
#' @description This function outputs information about MS1 annotation
#'
#' @param annotation_table_ms1 Table to decorate
#'
#' @return Message indicating the number of annotations obtained by MS1
#'
#' @examples NULL
decorate_masses <- function(annotation_table_ms1 =
get("annotation_table_ms1", envir = parent.frame())) {
df_1 <- annotation_table_ms1 |>
tidytable::filter(
!is.na(candidate_structure_inchikey_no_stereo) |
candidate_structure_inchikey_no_stereo != "notAnnotated"
)
log_debug(
"MS1 annotation led to \n",
crayon::green(nrow(
df_1 |>
tidytable::distinct(candidate_structure_inchikey_no_stereo)
)),
crayon::green("annotations"),
", on \n",
crayon::blue(nrow(df_1 |>
tidytable::distinct(feature_id))),
crayon::blue("features")
)
rm(df_1)
return(annotation_table_ms1)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.