Required packages to be installed:
if (!require("devtools", quietly = TRUE))
install.packages("BiocManager")
devtools::install_github("ctlab/GAMclust")
BiocManager::install("gatom")
BiocManager::install("mwcsr")
BiocManager::install("fgsea")
library(GAMclust)
library(gatom)
library(mwcsr)
library(fgsea)
library(data.table)
library(futile.logger)
set.seed(42)
First, please load and initialize all objects required for GAM-clustering analysis:
network.kegg.rds
and its metabolites annotation met.kegg.db.rds;# KEGG network:
network <- readRDS(url("http://artyomovlab.wustl.edu/publications/supp_materials/GATOM/network.kegg.rds"))
metabolites.annotation <- readRDS(url("http://artyomovlab.wustl.edu/publications/supp_materials/GATOM/met.kegg.db.rds"))
# combined network (KEGG+Rhea+transport reactions):
network <- readRDS(url("http://artyomovlab.wustl.edu/publications/supp_materials/GATOM/network.combined.rds"))
metabolites.annotation <- readRDS(url("http://artyomovlab.wustl.edu/publications/supp_materials/GATOM/met.combined.db.rds"))
gene2reaction.extra <- data.table::fread("http://artyomovlab.wustl.edu/publications/supp_materials/GATOM/gene2reaction.combined.mmu.eg.tsv", colClasses="character")
org.Hs.eg.gatom.anno
for human data or org.Mm.eg.gatom.anno
for mouse data;network.annotation <- readRDS(url("http://artyomovlab.wustl.edu/publications/supp_materials/GATOM/org.Mm.eg.gatom.anno.rds"))
met.to.filter <- data.table::fread(system.file("mets2mask.lst", package="GAMclust"))$ID
(4.1.) we recommend to use here either heuristic relax-and-cut solver
rnc_solver from mwcsr
package,
solver <- mwcsr::rnc_solver()
(4.2.) either proprietary CPLEX solver (free for academy);
cplex.dir <- "/opt/ibm/ILOG/CPLEX_Studio1271"
solver <- mwcsr::virgo_solver(cplex_dir = cplex.dir)
work.dir <- "results"
dir.create(work.dir, showWarnings = F, recursive = T)
stats.dir <- file.path(work.dir, "stats")
dir.create(stats.dir, showWarnings = F, recursive = T)
log.file <- file.path(stats.dir, "log.txt")
flog.appender(appender.file(log.file), name = "stats.logger")
flog.threshold(TRACE, name = "stats.logger")
GAMclust works with bulk, single cell and spatial RNA-seq data.
This vignette shows how to process bulk RNA-seq data on the example of ImmGen Open Source data reanalysis.
Let’s load the data.
For bulk RNA-seq cell data, take 12,000-15,000 genes for the GAM-clustering analysis.
expression_set_object <- readRDS(url("http://artyomovlab.wustl.edu/publications/supp_materials/GAMclust/243_es.top12k.rds"))
E <- Biobase::exprs(expression_set_object)
nrow(E) # ! make sure this value is in range from 10,000 to 15,000
# [1] 12000
E[1:3, 1:3]
# MF.64pLYVEpIIn.Ao.1 MF.64pLYVEpIIn.Ao.2 MF.64pLYVEpIIn.Ao.3
# Actb 14.77450 14.97466 14.80920
# Cst3 12.73106 12.80513 12.62843
# Eef1a1 12.14864 12.38202 12.33756
Genes in your dataset may be named as Symbol, Entrez, Ensembl or
RefSeq IDs. One of these names should be specified as value of
gene.id.type parameter in prepareData().
E.prep <- prepareData(E = E,
gene.id.type = "Symbol",
use.PCA = FALSE,
use.PCA.n = 50,
network.annotation = network.annotation)
E.prep[1:3, 1:3]
# MF.64pLYVEpIIn.Ao.1 MF.64pLYVEpIIn.Ao.2 MF.64pLYVEpIIn.Ao.3
# 11461 0.7947992 1.0375496 0.8368845
# 13010 0.3038730 0.3471841 0.2438681
# 13627 0.4187557 0.6674637 0.6200901
The prepareNetwork() function defines the structure of
the final metabolic modules.
network.prep <- prepareNetwork(E = E.prep,
network = network,
topology = "metabolites",
met.to.filter = met.to.filter,
network.annotation = network.annotation,
gene2reaction.extra = gene2reaction.extra)
The preClustering() function defines initial patterns
using k-medoids clustering on gene expression matrix. It is strongly
recommended to do initial clustering with no less than 32 clusters
(initial.number.of.clusters = 32).
You can visualize the initial heatmap as shown below.
cur.centers <- preClustering(E.prep = E.prep,
network.prep = network.prep,
initial.number.of.clusters = 32,
network.annotation = network.annotation)
cur.centers[1:3, 1:3]
# MF.64pLYVEpIIn.Ao.1 MF.64pLYVEpIIn.Ao.2 MF.64pLYVEpIIn.Ao.3
# 1 -0.09284514 -0.12763246 0.02188235
# 2 0.03432400 0.02773624 0.13477218
# 3 0.78988889 0.80944803 0.87514519
pheatmap::pheatmap(
GAMclust:::normalize.rows(cur.centers),
cluster_rows=F, cluster_cols=F,
show_rownames=F, show_colnames=T)
Now you have everything prepared for the GAM-clustering analysis.
Initial patterns will be now refined in an iterative process. The
output of gamClustering() function presents a set of
specific subnetworks (also called metabolic modules) that reflect
metabolic variability within a given transcriptional dataset.
Note, that it may take a long time to derive metabolic modules by
gamClustering() function (tens of minutes).
There is a set of parameters which determine the size and number of your final modules. We recommend you to start with the default settings, however you can adjust them based on your own preferences:
If you consider final modules to be too small or too big and it
complicates interpretation for you, you can either increase or reduce by
10 units the max.module.size parameter.
If among final modules you consider presence of any modules with
too similar patterns, you can reduce by 0.1 units the
cor.threshold parameter.
If among final modules you consider presence of any uninformative
modules, you can reduce by 10 times the p.adj.val.threshold
parameter.
results <- gamClustering(E.prep = E.prep,
network.prep = network.prep,
cur.centers = cur.centers,
start.base = 0.5,
base.dec = 0.05,
max.module.size = 50,
cor.threshold = 0.7,
p.adj.val.threshold = 1e-5,
batch.solver = seq_batch_solver(solver),
work.dir = work.dir,
show.intermediate.clustering = F,
verbose = T,
collect.stats = T)
Each metabolic module is a connected piece of metabolic network whose genes expression is correlated across all dataset.
The following functions will help you to visualize and explore the obtained results.
getGraphs(modules = results$modules,
network.annotation = network.annotation,
metabolites.annotation = metabolites.annotation,
seed.for.layout = 42,
work.dir = work.dir)
# Graphs for module 1 are built
# Graphs for module 2 are built
# Graphs for module 3 are built
# Graphs for module 4 are built
# Graphs for module 5 are built
# Graphs for module 6 are built
# Graphs for module 7 are built
# Graphs for module 8 are built
Example of the graph of the first module:
The table contains gene list. Each gene has two descriptive values: i) gene’s correlation value with the modules pattern and ii) gene’s score. High score means that this gene’s expression is similar to the module’s pattern and not similar to other modules’ patterns.
m.gene.list <- getGeneTables(modules = results$modules,
nets = results$nets,
patterns = results$patterns.pos,
gene.exprs = E.prep,
network.annotation = network.annotation,
work.dir = work.dir)
# Gene tables for module 1 are produced
# Gene tables for module 2 are produced
# Gene tables for module 3 are produced
# Gene tables for module 4 are produced
# Gene tables for module 5 are produced
# Gene tables for module 6 are produced
# Gene tables for module 7 are produced
# Gene tables for module 8 are produced
Example of the gene table of the first module:
head(GAMclust:::read.tsv(file.path(work.dir, "m.1.genes.tsv")))
patterns <- results$patterns.pos
for (i in seq_along(m.gene.list)) {
heatmap <- E[m.gene.list[[i]], , drop=F]
pheatmap::pheatmap(
GAMclust:::normalize.rows(heatmap),
cluster_rows=F, cluster_cols=F,
file=sprintf("%s/m.%s.genes.png", work.dir, i),
width=10, height=5,
show_rownames=T, show_colnames=T)
}
Example of the heatmap of the first module:
pheatmap::pheatmap(
GAMclust:::normalize.rows(E[m.gene.list[[1]], , drop=F]),
show_rownames=T, show_colnames=T)
Heatmap for patterns of all modules:
pheatmap::pheatmap(
GAMclust:::normalize.rows(patterns),
cluster_rows=F, cluster_cols=F,
show_rownames=T, show_colnames=T)
Functional annotation of obtained modules is done based on KEGG and Reactome canonical metabolic pathways.
getAnnotationTables(network.annotation = network.annotation,
nets = results$nets,
work.dir = work.dir)
# Pathway annotation for module 1 is produced
# Pathway annotation for module 2 is produced
# Pathway annotation for module 3 is produced
# Pathway annotation for module 4 is produced
# Pathway annotation for module 5 is produced
# Pathway annotation for module 6 is produced
# Pathway annotation for module 7 is produced
# Pathway annotation for module 8 is produced
Example of the annotation table of the first module:
head(GAMclust:::read.tsv(file.path(work.dir, "m.1.pathways.tsv")))
Annotation heatmap for all modules:
getAnnotationHeatmap(work.dir = work.dir)
# Processing module 1
# Module size: 32
# Processing module 2
# Module size: 12
# Processing module 3
# Module size: 10
# Processing module 4
# Module size: 9
# Processing module 5
# Module size: 5
# Processing module 6
# Module size: 5
# Processing module 7
# Module size: 5
# Processing module 8
# Module size: 4
You may also compare two results of running GAM-clustering on the
same dataset (e.g. runs with different parameters) or compare two
results of running GAM-clustering on different datasets (then set
same.data=FALSE).
modulesSimilarity(dir1 = work.dir,
dir2 = "old_dir",
name1 = "new",
name2 = "old",
same.data = TRUE,
use.genes.with.pos.score = TRUE,
work.dir = work.dir,
file.name = "comparison.png")