#' Read gene symbol mappings from .CHIP file
#'
#' `GSEA.ReadCHIPFile` is a wrapper for `read.table` with specified parameters for reading in a .CHIP file
#'
#' Internal `GSEA` function.
#'
#' @keywords internal
#'
GSEA.ReadCHIPFile <-
function(file = "NULL") {
chipframe <- read.table(file, sep = "\t", comment.char = "", quote = "", stringsAsFactors = FALSE,
fill = TRUE, header = T)
return(chipframe)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.