R/updateCellId.R

Defines functions updateCellId

Documented in updateCellId

### TODO:: Add updating of sensitivity Number tables
#' A function to update cell ids
#' @examples
#' data(TGGATESsmall)
#' updateCellId(TGGATESsmall, new.ids = cellNames(TGGATESsmall))
#'
#' @param tSet A \code{ToxicoSet} object to be updates
#' @param new.ids A \code{character} vector of ids to update with
#'
#' @return \code{none} Updates the cell ids in the ToxicoSet
#'
#' @importFrom CoreGx updateCellId
#' @keywords internal
#' @export
updateCellId <- function(tSet, new.ids = vector("character")){
    CoreGx::updateCellId(tSet, new.ids)
}

Try the ToxicoGx package in your browser

Any scripts or data that you put into this service are public.

ToxicoGx documentation built on Nov. 19, 2020, 2 a.m.