R/methods-name.R

#' name Getter method
#'
#' Retrieves the name of a tSet
#'
#' @examples
#' name(TGGATESsmall)
#'
#' @param object \code{ToxicoSet} A ToxicoSet object
#'
#' @return \code{character} A string of the tSet's name
#'
#' @importFrom CoreGx name
#' @importFrom methods callNextMethod
#' @export
setMethod(name, "ToxicoSet", function(object) {
    callNextMethod(object)
})

##TODO:: Implement name Setter method and add the generic to CoreGx

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.