R/description.R

Defines functions COMPASSDescription

Documented in COMPASSDescription

##' Get and Set the Description for the Shiny Application
##'
##' This is used for setting an informative description used in the Shiny
##' application.
##'
##' Information about the \code{COMPASS} results will be auto-generated.
##'
##' @param x A \code{COMPASS} fit.
##' @param value A set of paragraphs describing the experiment, as a character
##'   vector.
##' @export
COMPASSDescription <- function(x) {
  x$description
}

##' @rdname COMPASSDescription
##' @export
"COMPASSDescription<-" <- function(x, value) {
  x$description <- value
  return(x)
}

Try the COMPASS package in your browser

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

COMPASS documentation built on Nov. 8, 2020, 8:05 p.m.