#' Print the available list of GTEx tissues. If no object is provided, the function provides all available GTEx tissues.
#'
#' @param actorObj Output from actor model
#' @return A vector of all available tissues to plot
#'
#' @export
availableTissues=function(actorObj=NULL){
if(is.null(actorObj)){
return(colnames(gtexRefPanel)[-(1:2)])
}
return(colnames(actorObj$tissuePhi))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.