R/r_log.R

Defines functions r_log

Documented in r_log

#' Regularized log transformation
#'
#' This is a wrapper for \code{rlog} and avoids loading the DESeq2 package for
#' simple workflows
#'
#' @param dds a DESeqDataSet
#' @param \dots additional options passed to \code{rlog}
#'
#' @return A DESeqTransform object
#'
#' @author Chris Stubben
#'
#' @examples
#' \dontrun{
#'   rlog_dds(dds)
#' }
#' @export

r_log <- function(dds,  ...){
   rld <- DESeq2::rlog(dds, ...)
   rld
}
HuntsmanCancerInstitute/hciR documentation built on March 26, 2024, 3:09 a.m.