#' Loading the GeCKO libraries
#'
#' @param species
#'
#' @return
#' @export
#'
#' @importFrom fst read_fst
#'
#' @examples
get_library <- function(species = "human"){
require(data.table)
require(fst)
file_name <- paste0(species, ".fst")
result <- fst::read_fst(system.file("extdata", file_name, package = "GeCKO"),
as.data.table = TRUE)
setkey(result, gene_id)
return(result)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.