R/get_def_assay.R

Defines functions get_def_assay

Documented in get_def_assay

#' Get Default Assay
#'
#' This will get the default assay used for downstream analysis.
#'
#' @param input the input sce
#' @export
#' @details
#'
#' @examples
#' sce <- get_def_assay(sce)

get_def_assay <- function(input){
  def_assay <- int_metadata(input)$default_assay
  return(def_assay)
}

# Doc check
kgellatl/SignalCell documentation built on Sept. 3, 2020, 8:45 a.m.