Title: | From functional enrichment results to biological networks |
---|---|
Description: | This package enables the visualization of functional enrichment results as network graphs. First the package enables the visualization of enrichment results, in a format corresponding to the one generated by gprofiler2, as a customizable Cytoscape network. In those networks, both gene datasets (GO terms/pathways/protein complexes) and genes associated to the datasets are represented as nodes. While the edges connect each gene to its dataset(s). The package also provides the option to create enrichment maps from functional enrichment results. Enrichment maps enable the visualization of enriched terms into a network with edges connecting overlapping genes. |
Authors: | Astrid Deschênes [aut, cre] , Pascal Belleau [aut] , Robert L. Faure [aut] , Maria J. Fernandes [aut] , Alexander Krasnitz [aut], David A. Tuveson [aut] |
Maintainer: | Astrid Deschênes <[email protected]> |
License: | Artistic-2.0 |
Version: | 1.5.0 |
Built: | 2024-10-30 07:42:19 UTC |
Source: | https://github.com/bioc/enrichViewNet |
The enrichViewNet
package enables the visualization
of enrichment results, in a format corresponding to the one generated
by gprofiler2
(https://cran.r-project.org/web/packages/gprofiler2/index.html)
under the form of Cytoscape
network (https://cytoscape.org/).
In those networks, both gene datasets (GO terms/pathways/protein complexes) and genes are represented as nodes. A edge connect a gene to its datasets. In the current version, only genes present in at least one gene dataset are retained.
Astrid Deschênes, Pascal Belleau, Robert L Faure, Maria J Fernandes, David A Tuveson
Maintainer: Astrid Deschênes <[email protected]>
createNetwork
for transforming functional
enrichment results from gprofiler2 into a Cytoscape network
createEnrichMap
for transforming functional
enrichment results from gprofiler2 into an enrichment map
User selected enrichment terms are used to create an enrichment map. The selection of the term can by specifying by the source of the terms (GO:MF, REAC, TF, etc.) or by listing the selected term IDs. The map is only generated when there is at least on significant term to graph.
createEnrichMap( gostObject, query, source = c("TERM_ID", "GO:MF", "GO:CC", "GO:BP", "KEGG", "REAC", "TF", "MIRNA", "HPA", "CORUM", "HP", "WP"), termIDs = NULL, removeRoot = TRUE, showCategory = 30L, groupCategory = FALSE, categoryLabel = 1, categoryNode = 1, line = 1, ... )
createEnrichMap( gostObject, query, source = c("TERM_ID", "GO:MF", "GO:CC", "GO:BP", "KEGG", "REAC", "TF", "MIRNA", "HPA", "CORUM", "HP", "WP"), termIDs = NULL, removeRoot = TRUE, showCategory = 30L, groupCategory = FALSE, categoryLabel = 1, categoryNode = 1, line = 1, ... )
gostObject |
a |
query |
a |
source |
a |
termIDs |
a |
removeRoot |
a |
showCategory |
a positive |
groupCategory |
a |
categoryLabel |
a positive |
categoryNode |
a positive |
line |
a non-negative |
... |
additional arguments that will be pass to the
|
a ggplot
object which is the enrichment map for enrichment
results.
Astrid Deschênes
## Loading dataset containing result from an enrichment analysis done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) ## Extract query information (only one in this dataset) query <- unique(parentalNapaVsDMSOEnrichment$result$query) ## Create graph for Gene Ontology - Cellular Component related results createEnrichMap(gostObject=parentalNapaVsDMSOEnrichment, query=query, source="GO:CC", removeRoot=TRUE)
## Loading dataset containing result from an enrichment analysis done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) ## Extract query information (only one in this dataset) query <- unique(parentalNapaVsDMSOEnrichment$result$query) ## Create graph for Gene Ontology - Cellular Component related results createEnrichMap(gostObject=parentalNapaVsDMSOEnrichment, query=query, source="GO:CC", removeRoot=TRUE)
User selected enrichment terms are used to create an enrichment map. The selection of the term can by specifying by the source of the terms (GO:MF, REAC, TF, etc.) or by listing the selected term IDs. The map is only generated when there is at least on significant term to graph.
createEnrichMapMultiBasic( gostObjectList, queryList, source = c("TERM_ID", "GO:MF", "GO:CC", "GO:BP", "KEGG", "REAC", "TF", "MIRNA", "HPA", "CORUM", "HP", "WP"), termIDs = NULL, removeRoot = TRUE, showCategory = 30L, groupCategory = FALSE, categoryLabel = 1, categoryNode = 1, line = 1, ... )
createEnrichMapMultiBasic( gostObjectList, queryList, source = c("TERM_ID", "GO:MF", "GO:CC", "GO:BP", "KEGG", "REAC", "TF", "MIRNA", "HPA", "CORUM", "HP", "WP"), termIDs = NULL, removeRoot = TRUE, showCategory = 30L, groupCategory = FALSE, categoryLabel = 1, categoryNode = 1, line = 1, ... )
gostObjectList |
a |
queryList |
a |
source |
a |
termIDs |
a |
removeRoot |
a |
showCategory |
a positive |
groupCategory |
a |
categoryLabel |
a positive |
categoryNode |
a positive |
line |
a non-negative |
... |
additional arguments that will be pass to the
|
a ggplot
object which is the enrichment map for enrichment
results.
Astrid Deschênes
## Loading dataset containing results from 2 enrichment analyses done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) data(rosaNapaVsDMSOEnrichment) ## Extract query information (only one in each dataset) query1 <- unique(parentalNapaVsDMSOEnrichment$result$query)[1] query2 <- unique(rosaNapaVsDMSOEnrichment$result$query)[1] ## Create graph for KEGG related results from ## 2 enrichment analyses createEnrichMapMultiBasic(gostObjectList=list(parentalNapaVsDMSOEnrichment, rosaNapaVsDMSOEnrichment), queryList=list(query1, query2), source="KEGG", removeRoot=TRUE)
## Loading dataset containing results from 2 enrichment analyses done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) data(rosaNapaVsDMSOEnrichment) ## Extract query information (only one in each dataset) query1 <- unique(parentalNapaVsDMSOEnrichment$result$query)[1] query2 <- unique(rosaNapaVsDMSOEnrichment$result$query)[1] ## Create graph for KEGG related results from ## 2 enrichment analyses createEnrichMapMultiBasic(gostObjectList=list(parentalNapaVsDMSOEnrichment, rosaNapaVsDMSOEnrichment), queryList=list(query1, query2), source="KEGG", removeRoot=TRUE)
User selected enrichment terms are used to create an enrichment map. The selection of the term can by specifying by the source of the terms (GO:MF, REAC, TF, etc.) or by listing the selected term IDs. The map is only generated when there is at least on significant term to graph.
createEnrichMapMultiComplex( gostObjectList, queryInfo, showCategory = 30L, groupCategory = FALSE, categoryLabel = 1, categoryNode = 1, line = 1, ... )
createEnrichMapMultiComplex( gostObjectList, queryInfo, showCategory = 30L, groupCategory = FALSE, categoryLabel = 1, categoryNode = 1, line = 1, ... )
gostObjectList |
a |
queryInfo |
a
|
showCategory |
a positive |
groupCategory |
a |
categoryLabel |
a positive |
categoryNode |
a positive |
line |
a non-negative |
... |
additional arguments that will be pass to the
|
a ggplot
object which is the enrichment map for enrichment
results.
Astrid Deschênes
## Loading dataset containing results from 2 enrichment analyses done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) data(rosaNapaVsDMSOEnrichment) ## TODO gostObjectList=list(parentalNapaVsDMSOEnrichment, parentalNapaVsDMSOEnrichment, rosaNapaVsDMSOEnrichment, rosaNapaVsDMSOEnrichment) ## Create data frame containing required information enabling the ## selection of the retained enriched terms for each enrichment analysis. ## One line per enrichment analyses present in the gostObjectList parameter ## With this data frame, the enrichment results will be split in 4 groups: ## 1) KEGG significant terms from parental napa vs DMSO (no root term) ## 2) REACTOME significant terms from parental napa vs DMSO (no root term) ## 3) KEGG significant terms from rosa napa vs DMSO (no root term) ## 4) REACTOME significant terms from rosa napa vs DMSO (no root term) queryDataFrame <- data.frame(queryName=c("parental_napa_vs_DMSO", "parental_napa_vs_DMSO", "rosa_napa_vs_DMSO", "rosa_napa_vs_DMSO"), source=c("KEGG", "REAC", "KEGG", "REAC"), removeRoot=c(TRUE, TRUE, TRUE, TRUE), termIDs=c("", "", "", ""), groupName=c("parental - KEGG", "parental - Reactome", "rosa - KEGG", "rosa - Reactome"), stringsAsFactors=FALSE) ## Create graph for KEGG and REACTOME significant results from ## 2 enrichment analyses createEnrichMapMultiComplex(gostObjectList=gostObjectList, queryInfo=queryDataFrame, line=1.5)
## Loading dataset containing results from 2 enrichment analyses done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) data(rosaNapaVsDMSOEnrichment) ## TODO gostObjectList=list(parentalNapaVsDMSOEnrichment, parentalNapaVsDMSOEnrichment, rosaNapaVsDMSOEnrichment, rosaNapaVsDMSOEnrichment) ## Create data frame containing required information enabling the ## selection of the retained enriched terms for each enrichment analysis. ## One line per enrichment analyses present in the gostObjectList parameter ## With this data frame, the enrichment results will be split in 4 groups: ## 1) KEGG significant terms from parental napa vs DMSO (no root term) ## 2) REACTOME significant terms from parental napa vs DMSO (no root term) ## 3) KEGG significant terms from rosa napa vs DMSO (no root term) ## 4) REACTOME significant terms from rosa napa vs DMSO (no root term) queryDataFrame <- data.frame(queryName=c("parental_napa_vs_DMSO", "parental_napa_vs_DMSO", "rosa_napa_vs_DMSO", "rosa_napa_vs_DMSO"), source=c("KEGG", "REAC", "KEGG", "REAC"), removeRoot=c(TRUE, TRUE, TRUE, TRUE), termIDs=c("", "", "", ""), groupName=c("parental - KEGG", "parental - Reactome", "rosa - KEGG", "rosa - Reactome"), stringsAsFactors=FALSE) ## Create graph for KEGG and REACTOME significant results from ## 2 enrichment analyses createEnrichMapMultiComplex(gostObjectList=gostObjectList, queryInfo=queryDataFrame, line=1.5)
User selected enrichment terms are used to create a Cytoscape network where the selected terms and the genes that where part of the enrichment analysis are all represented as nodes. Edges are linking the genes to their terms. The selection of the term can by specifying the source of the terms (GO:MF, REAC, TF, etc.) or by listing the selected term IDs. The network is only generated when there is at least on significant term to graph. When the enrichment analysis contains more than one query, only one query can be selected to generate the network.
createNetwork( gostObject, source = c("TERM_ID", "GO:MF", "GO:CC", "GO:BP", "KEGG", "REAC", "TF", "MIRNA", "HPA", "CORUM", "HP", "WP"), termIDs = NULL, removeRoot = TRUE, query = NULL, title = "gprofiler network", collection = "enrichment results", fileName = "gprofilerNetwork.cx" )
createNetwork( gostObject, source = c("TERM_ID", "GO:MF", "GO:CC", "GO:BP", "KEGG", "REAC", "TF", "MIRNA", "HPA", "CORUM", "HP", "WP"), termIDs = NULL, removeRoot = TRUE, query = NULL, title = "gprofiler network", collection = "enrichment results", fileName = "gprofilerNetwork.cx" )
gostObject |
a |
source |
a |
termIDs |
a |
removeRoot |
a |
query |
a |
title |
a |
collection |
a |
fileName |
a |
TRUE
Astrid Deschênes
## Loading dataset containing result from an enrichment analysis done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) ## Some of the enrichment results present in the dataset head(parentalNapaVsDMSOEnrichment$result) ## Create network for Gene Ontology - Molecular Function related results ## in Cytoscape (when the application is opened) ## Otherwise, create a CX file in the temporary directory ## The file can be opened in Cytoscape createNetwork(gostObject=parentalNapaVsDMSOEnrichment, source="KEGG", removeRoot=FALSE, title="KEGG Graph", fileName=file.path(tempdir(), "KEGG_demo.cx"))
## Loading dataset containing result from an enrichment analysis done with ## gprofiler2 data(parentalNapaVsDMSOEnrichment) ## Some of the enrichment results present in the dataset head(parentalNapaVsDMSOEnrichment$result) ## Create network for Gene Ontology - Molecular Function related results ## in Cytoscape (when the application is opened) ## Otherwise, create a CX file in the temporary directory ## The file can be opened in Cytoscape createNetwork(gostObject=parentalNapaVsDMSOEnrichment, source="KEGG", removeRoot=FALSE, title="KEGG Graph", fileName=file.path(tempdir(), "KEGG_demo.cx"))
gprofiler2
(https://cran.r-project.org/web/packages/gprofiler2/vignettes/gprofiler2.html).The object is a list
with 2 entries. It contains the results of the
enrichment analysis as well as the metadata related to the analysis.
data(demoGOST)
data(demoGOST)
The list
contains two entries. The result
entry
contains a data.frame
with the significant results obtained by
an enrichment analysis done with gprofiler2
. The meta
entry
contains a named list with all the metadata for the query.
This dataset can be
used to test the createNetwork
function.
A list
containing two entries. The result
entry
contains a data.frame
with the significant results obtained by
an enrichment analysis done with gprofiler2
.
The meta
entry contains a named list with all the
metadata for the query.
createNetwork for transforming functional enrichment results from gprofiler2 into a Cytoscape network
createEnrichMap for transforming functional enrichment results from gprofiler2 into an enrichment map
## Loading dataset containing result from an enrichment analysis done with ## gprofiler2 data(demoGOST) ## Create network for WikiPathways results ## in Cytoscape (if the application is open) ## Otherwise, create a CX file in the temporary directory ## The file can be opened in Cytoscape createNetwork(gostObject=demoGOST, source="WP", title="Wikipathways", fileName=file.path(tempdir(), "Wikipathways_Demo.cx"))
## Loading dataset containing result from an enrichment analysis done with ## gprofiler2 data(demoGOST) ## Create network for WikiPathways results ## in Cytoscape (if the application is open) ## Otherwise, create a CX file in the temporary directory ## The file can be opened in Cytoscape createNetwork(gostObject=demoGOST, source="WP", title="Wikipathways", fileName=file.path(tempdir(), "Wikipathways_Demo.cx"))
The object is a data.frame
with 24184 rows and 4 columns.
Each row correspond to a tested gene.
data(parentalNapaVsDMSODEG)
data(parentalNapaVsDMSODEG)
a data.frame
containing the results of a differential
expression analysis between napabucasin treated and DMSO control parental
MiaPaCa2 cells for all 24184 genes tested. The 4 columns are:
"EnsemblID"
: a character
string representing the
unique Ensembl identifier for the tested gene
"log2FoldChange"
: a numeric
representing the expression
difference (in log2FoldChange) between the napabucasin treatment and
the DMSO control for the tested gene
"padj"
: a numeric
representing the adjusted p-value
associated to the difference in expression for the tested gene
"GeneName"
: a character
string representing the name of
the tested gene
The differentially expressed genes between napabucasin-treated cells (0.5 uM) and DMSO as vehicle control are reprinted from Clinical Cancer Research, 2019, 25 (23), 7162–7174, Fieke E.M. Froeling, Manojit Mosur Swamynathan, Astrid Deschênes, Iok In Christine Chio, Erin Brosnan, Melissa A. Yao, Priya Alagesan, Matthew Lucito, Juying Li, An-Yun Chang, Lloyd C. Trotman, Pascal Belleau, Youngkyu Park, Harry A. Rogoff, James D. Watson, David A. Tuveson, Bioactivation of napabucasin triggers reactive oxygen species–mediated cancer cell death, with permission from AACR.
a data.frame
containing the results of a differential
expression analysis between napabucasin treated and DMSO control parental
MiaPaCa2 cells for all 24184 genes tested. The 4 columns are:
"EnsemblID"
: a character
string representing the
unique Ensembl identifier for the tested gene
"log2FoldChange"
: a numeric
representing the expression
difference (in log2FoldChange) between the napabucasin treatment and
the DMSO control for the tested gene
"padj"
: a numeric
representing the adjusted p-value
associated to the difference in expression for the tested gene
"GeneName"
: a character
string representing the name of
the tested gene
The original RNA-sequencing data is available at the Gene Expression Omnibus (GEO) under the accession number GSE135352.
createNetwork for transforming functional enrichment results from gprofiler2 into a Cytoscape network
createEnrichMap for transforming functional enrichment results from gprofiler2 into an enrichment map
## Required library library(gprofiler2) ## Loading data set containing the results of a differentially expressed ## analysis between 2-hour treatment with 0.5 uM napabucasin and ## DMSO vehicle control parental MiaPaCa2 cells data(parentalNapaVsDMSODEG) allGenes <- unique(parentalNapaVsDMSODEG$EnsemblID) ## Select the significantly differentially expressed genes selection <- which(abs(parentalNapaVsDMSODEG$log2FoldChange) > 1 & parentalNapaVsDMSODEG$padj < 0.05) selectedGenes <- unique(parentalNapaVsDMSODEG$EnsemblID[selection]) ## Run an enrichment analysis using WikiPathways dataset gostres <- gost(query = list(parental_napa_vs_DMSO=selectedGenes), organism="hsapiens", correction_method = "g_SCS", sources=c("WP"), significant=TRUE, evcodes=TRUE, custom_bg=allGenes, exclude_iea=TRUE)
## Required library library(gprofiler2) ## Loading data set containing the results of a differentially expressed ## analysis between 2-hour treatment with 0.5 uM napabucasin and ## DMSO vehicle control parental MiaPaCa2 cells data(parentalNapaVsDMSODEG) allGenes <- unique(parentalNapaVsDMSODEG$EnsemblID) ## Select the significantly differentially expressed genes selection <- which(abs(parentalNapaVsDMSODEG$log2FoldChange) > 1 & parentalNapaVsDMSODEG$padj < 0.05) selectedGenes <- unique(parentalNapaVsDMSODEG$EnsemblID[selection]) ## Run an enrichment analysis using WikiPathways dataset gostres <- gost(query = list(parental_napa_vs_DMSO=selectedGenes), organism="hsapiens", correction_method = "g_SCS", sources=c("WP"), significant=TRUE, evcodes=TRUE, custom_bg=allGenes, exclude_iea=TRUE)
The enrichment analysis was done with gprofile2 package (Kolberg L et al 2020) with database version 'e109_eg56_p17_1d3191d' and g:SCS multiple testing correction method applying significance threshold of 0.05 (Raudvere U et al 2019). All tested genes were used as background.
data(parentalNapaVsDMSOEnrichment)
data(parentalNapaVsDMSOEnrichment)
a list
created by gprofiler2 that contains the results
from the enrichment analysis:
"result"
: a data.frame
with the significantly
enriched terms
"meta"
: a list
with the meta-data information
The object is a named list
with 2 entries. The 'result' entry
contains a data.frame
with the enrichment analysis results and
the 'meta' entry contains metadata information.
The dataset used for the enrichment analysis is associated to this publication:
Froeling F.E.M. et al.Bioactivation of Napabucasin Triggers Reactive Oxygen Species–Mediated Cancer Cell Death. Clin Cancer Res 1 December 2019; 25 (23): 7162–7174
The enrichment analysis has been done with gprofile2 package (Kolberg L et al 2020) with database version 'e109_eg56_p17_1d3191d' and g:SCS multiple testing correction method applying significance threshold of 0.05 (Raudvere U et al 2019). All tested genes were used as background.
a list
containing 2 entries:
"result"
: a data.frame
with the significantly
enriched terms
"meta"
: a list
with the meta-data information
The original RNA-sequencing data is available at the Gene Expression Omnibus (GEO) under the accession number GSE135352.
createNetwork for transforming functional enrichment results from gprofiler2 into a Cytoscape network
createEnrichMap for transforming functional enrichment results from gprofiler2 into an enrichment map
## Loading dataset containing the results of the enrichment analysis ## done on a differentially expressed ## analysis between 2-hour treatment with 0.5 uM napabucasin and ## DMSO vehicle control parental MiaPaCa2 cells data(parentalNapaVsDMSOEnrichment) ## Create an enrichment map for the GO:CC terms createEnrichMap(gostObject=parentalNapaVsDMSOEnrichment, query="parental_napa_vs_DMSO", source="GO:CC")
## Loading dataset containing the results of the enrichment analysis ## done on a differentially expressed ## analysis between 2-hour treatment with 0.5 uM napabucasin and ## DMSO vehicle control parental MiaPaCa2 cells data(parentalNapaVsDMSOEnrichment) ## Create an enrichment map for the GO:CC terms createEnrichMap(gostObject=parentalNapaVsDMSOEnrichment, query="parental_napa_vs_DMSO", source="GO:CC")
The object is a data.frame
with 23542 rows and 4 columns.
Each row correspond to a tested gene.
data(rosaNapaVsDMSODEG)
data(rosaNapaVsDMSODEG)
a data.frame
containing the results of a differential
expression analysis between napabucasin treated and DMSO control MiaPaCa2
cells stably expressing the Rosa26 control vector for all 23542 genes
tested. The 4 columns are:
"EnsemblID"
: a character
string representing the
unique Ensembl identifier for the tested gene
"log2FoldChange"
: a numeric
representing the expression
difference (in log2FoldChange) between the napabucasin treatment and
the DMSO control for the tested gene
"padj"
: a numeric
representing the adjusted p-value
associated to the difference in expression for the tested gene
"GeneName"
: a character
string representing the name of
the tested gene
The differentially expressed genes between napabucasin-treated cells (0.5 uM) and DMSO as vehicle control are reprinted from Clinical Cancer Research, 2019, 25 (23), 7162–7174, Fieke E.M. Froeling, Manojit Mosur Swamynathan, Astrid Deschênes, Iok In Christine Chio, Erin Brosnan, Melissa A. Yao, Priya Alagesan, Matthew Lucito, Juying Li, An-Yun Chang, Lloyd C. Trotman, Pascal Belleau, Youngkyu Park, Harry A. Rogoff, James D. Watson, David A. Tuveson, Bioactivation of napabucasin triggers reactive oxygen species–mediated cancer cell death, with permission from AACR.
a data.frame
containing the results of a differential
expression analysis between napabucasin treated and DMSO control MiaPaCa2
cells stably expressing the Rosa26 control vector for all 23542 genes
tested. The 4 columns are:
"EnsemblID"
: a character
string representing the
unique Ensembl identifier for the tested gene
"log2FoldChange"
: a numeric
representing the expression
difference (in log2FoldChange) between the napabucasin treatment and
the DMSO control for the tested gene
"padj"
: a numeric
representing the adjusted p-value
associated to the difference in expression for the tested gene
"GeneName"
: a character
string representing the name of
the tested gene
The original RNA-sequencing data is available at the Gene Expression Omnibus (GEO) under the accession number GSE135352.
createNetwork for transforming functional enrichment results from gprofiler2 into a Cytoscape network
createEnrichMap for transforming functional enrichment results from gprofiler2 into an enrichment map
## Required library library(gprofiler2) ## Loading dataset containing the results of a differentially expressed ## analysis between 2-hour treatment with 0.5 uM napabucasin and ## DMSO vehicle control MiaPaCa2 cells stably expressing the ## Rosa26 control vector data(rosaNapaVsDMSODEG) allGenes <- unique(rosaNapaVsDMSODEG$EnsemblID) ## Select the significantly differentially expressed genes selection <- which(abs(rosaNapaVsDMSODEG$log2FoldChange) > 1 & rosaNapaVsDMSODEG$padj < 0.05) selectedGenes <- unique(rosaNapaVsDMSODEG$EnsemblID[selection]) ## Run an enrichment analysis using Transfac dataset (transcription factor) gostres <- gost(query = list(rosa_napa_vs_DMSO=selectedGenes), organism="hsapiens", correction_method = "g_SCS", sources=c("TF"), significant=TRUE, evcodes=TRUE, custom_bg=allGenes, exclude_iea=TRUE)
## Required library library(gprofiler2) ## Loading dataset containing the results of a differentially expressed ## analysis between 2-hour treatment with 0.5 uM napabucasin and ## DMSO vehicle control MiaPaCa2 cells stably expressing the ## Rosa26 control vector data(rosaNapaVsDMSODEG) allGenes <- unique(rosaNapaVsDMSODEG$EnsemblID) ## Select the significantly differentially expressed genes selection <- which(abs(rosaNapaVsDMSODEG$log2FoldChange) > 1 & rosaNapaVsDMSODEG$padj < 0.05) selectedGenes <- unique(rosaNapaVsDMSODEG$EnsemblID[selection]) ## Run an enrichment analysis using Transfac dataset (transcription factor) gostres <- gost(query = list(rosa_napa_vs_DMSO=selectedGenes), organism="hsapiens", correction_method = "g_SCS", sources=c("TF"), significant=TRUE, evcodes=TRUE, custom_bg=allGenes, exclude_iea=TRUE)
The enrichment analysis was done with gprofile2 package (Kolberg L et al 2020) with database version 'e109_eg56_p17_1d3191d' and g:SCS multiple testing correction method applying significance threshold of 0.05 (Raudvere U et al 2019). All tested genes were used as background.
data(rosaNapaVsDMSOEnrichment)
data(rosaNapaVsDMSOEnrichment)
a list
created by gprofiler2 that contains the results
from the enrichment analysis:
"result"
: a data.frame
with the significantly
enriched terms
"meta"
: a list
with the meta-data information
The object is a named list
with 2 entries. The 'result' entry
contains a data.frame
with the enrichment analysis results and
the 'meta' entry contains metadata information.
The dataset used for the enrichment analysis is associated to this publication:
Froeling F.E.M. et al.Bioactivation of Napabucasin Triggers Reactive Oxygen Species–Mediated Cancer Cell Death. Clin Cancer Res 1 December 2019; 25 (23): 7162–7174
The enrichment analysis has been done with gprofile2 package (Kolberg L et al 2020) with database version 'e109_eg56_p17_1d3191d' and g:SCS multiple testing correction method applying significance threshold of 0.05 (Raudvere U et al 2019). All tested genes were used as background.
a list
created by gprofiler2 that contains the results
from the enrichment analysis:
"result"
: a data.frame
with the significantly enriched
terms
"meta"
: a list
with the meta-data information
The original RNA-sequencing data is available at the Gene Expression Omnibus (GEO) under the accession number GSE135352.
createNetwork for transforming functional enrichment results from gprofiler2 into a Cytoscape network
createEnrichMap for transforming functional enrichment results from gprofiler2 into an enrichment map
## Loading dataset containing the enrichment analysis done on the ## differentially expressed analysis between 2-hour treatment with 0.5 uM ## napabucasin and DMSO control MiaPaCa2 cells stably expressing ## the Rosa26 control vector data(rosaNapaVsDMSOEnrichment) ## Create an enrichment map for the KEGG terms createEnrichMap(gostObject=rosaNapaVsDMSOEnrichment, query="rosa_napa_vs_DMSO", source="KEGG")
## Loading dataset containing the enrichment analysis done on the ## differentially expressed analysis between 2-hour treatment with 0.5 uM ## napabucasin and DMSO control MiaPaCa2 cells stably expressing ## the Rosa26 control vector data(rosaNapaVsDMSOEnrichment) ## Create an enrichment map for the KEGG terms createEnrichMap(gostObject=rosaNapaVsDMSOEnrichment, query="rosa_napa_vs_DMSO", source="KEGG")