R/ctd_to_seurat.R

Defines functions ctd_to_seurat

Documented in ctd_to_seurat

#' Convert: \code{CellTypeDataSet} ==> \code{Seurat}
#'
#' @inheritParams converters
#' @export
#' @examples
#' obj <- example_obj("ctd")
#' obj2 <- ctd_to_seurat(obj)
ctd_to_seurat <- function(obj,
                          verbose=TRUE,
                          ...){
  obj <- ctd_to_se(obj = obj,
                   verbose = verbose,
                   ...)
  obj <- se_to_seurat(obj = obj,
                      verbose = verbose)
  return(obj)
}
bschilder/scKirby documentation built on April 22, 2024, 12:13 a.m.