Description Usage Arguments Details Value See Also Examples
View source: R/utils_write_gmt.R
Write a pathwayCollection
object as a pathways list file
in Gene Matrix Transposed (.gmt
) format.
1 |
pathwayCollection |
A
|
file |
Either a character string naming a file or a connection open for
writing. File names should end in |
setType |
What is the type of the set: pathway set of gene, gene sites
in RNA or DNA, or regions of CpGs. Defaults to |
See the Broad Institute's "Data Formats" page for a description of the Gene Matrix Transposed file format: https://software.broadinstitute.org/cancer/software/gsea/wiki/index.php/Data_formats#GMT:_Gene_Matrix_Transposed_file_format_.28.2A.gmt.29
NULL. Output written to the file path specified.
print.pathwayCollection
; read_gmt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Toy pathway set
toy_pathwayCollection <- list(
pathways = list(
c("C1orf27", "NR5A1", "BLOC1S4", "C4orf50"),
c("TARS2", "DUSP5", "GPR88"),
c("TRX-CAT3-1", "LINC01333", "LINC01499", "LINC01046", "LINC01149")
),
TERMS = c("C-or-f_paths", "randomPath2", "randomLINCs"),
description = c("these are", "totally made up", "pathways")
)
class(toy_pathwayCollection) <- c("pathwayCollection", "list")
toy_pathwayCollection
# write_gmt(toy_pathwayCollection, file = "example_pathway.gmt")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.