#' import_options
#'
#' @param file_path file_path
#'
#'
#' @keywords internal
import_options <- function (file_path) {
if(is.null(file_path)){
stop('No options file selected')
}
if(tools::file_ext(file_path) != 'csv'){
stop('options file is not a valid csv file')
}
options_table = data.table::fread(file_path, na.strings = c(""))
if (!data.table::is.data.table(options_table)){
stop('Options is not type DataTable')
}
return(options_table)
}
#' rename_columns_from_options
#'
#' Renames the columns of dt by replacing all names defined in vector old_columns by vector new_columns
#'
#' @param dt dt
#' @param options_table options_table
#' @param old_column old_column
#' @param new_columns new_columns
#'
#'
#' @keywords internal
rename_columns_from_options <- function(dt, options_dt, old_columns, new_columns) {
rename_table = stats::na.omit(options_dt[, c(old_columns, new_columns), with=FALSE], old_columns)
return(data.table::setnames(dt, rename_table[[old_columns]], rename_table[[new_columns]]))
}
#' remove_identical_peaks
#'
#' @param dt dt
#' @param incl_height height
#'
#' @return dpl
#'
#' @keywords internal
remove_identical_peaks <- function(dt, grouped = FALSE){
peaks_before <- nrow(dt)
if (grouped == FALSE){
dt <- dt[!duplicated(dt, by=c('peak_area', 'peak_height', 'mz', 'mz_start', 'mz_end', 'rt', 'rt_start', 'rt_end'))]
} else {
dt <- dt[!duplicated(dt, by=c('peak_area', 'mz', 'rt'))]
}
peaks_removed <- peaks_before-nrow(dt)
message(paste0('Removed ', peaks_removed,' identical peaks from non-targeted output'))
return(dt)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.