#' Display the default genomic annotation packages associated with a
#' genome build
#'
#' @param Genome String indicating the name of the genome assembly.
#'
#' @return Returns a list of the default data packages for a genome build.
#'
#' @examples
#' ## View default genomic annotation packages associated with "hg19"
#' defaultPackages(Genome = "hg19")
#'
#' ## View default genomic annotation packages associated with "mm9"
#' defaultPackages(Genome = "mm9")
#' @export
defaultPackages <- function(Genome) {
availDefaults <- default_genomePackages$Genome
if (!Genome %in% availDefaults) {
stop("Inputted genome not an available default. To see the included ",
"defaults, use `genomes()`.", call. = FALSE)
}
defaults <- default_genomePackages[
default_genomePackages$Genome == Genome,c("Genome",
"TxDb",
"OrgDb",
"gene.id.column",
"display.column",
"BSgenome")]
return(str(defaults))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.