Returns a list of pathways from a GMT file.
read_gmt(gmtfile)
A list of vectors, one for each pathway in the GMT file.
# this example reads in the freely available pathways from wikipathways
if (FALSE) { # \dontrun{
mysigs <- read_gmt(
"http://data.wikipathways.org/20240910/gmt/wikipathways-20240910-gmt-Homo_sapiens.gmt"
)
head(mysigs)
# see how the gene identifiers are encoded as ENTREZ id
} # }