R/preprocess_counts_germany.R

#' Preprocess Germany Counts Data
#' Gene Expression - RNASeq
#'
#' @param counts
#'
#' @return
#' @export
#'
#' @examples
preprocess_counts_germany <- function ( counts) {
  colnames( counts )[-1] <- gsub ( "X", "S", colnames( counts )[-1] )
  colnames( counts )[1] <- "GeneID"
  return ( counts )
}
FernandoMarcon/REbola documentation built on April 4, 2022, 12:49 a.m.