GENIE3 1.29.0
This is the documentation for the R implementation of GENIE3.
The GENIE3 method is described in:
Huynh-Thu V. A., Irrthum A., Wehenkel L., and Geurts P. (2010) Inferring regulatory networks from expression data using tree-based methods. PLoS ONE, 5(9):e12776.
The GENIE3()
function takes as input argument a gene expression matrix exprMatr
. Each row of that matrix must correspond to a gene and each column must correspond to a sample. The gene names must be specified in rownames(exprMatr)
. The sample names can be specified in colnames(exprMatr)
, but this is not mandatory. For example, the following command lines generate a fake expression matrix (for the purpose of this tutorial only):
exprMatr <- matrix(sample(1:10, 100, replace=TRUE), nrow=20)
rownames(exprMatr) <- paste("Gene", 1:20, sep="")
colnames(exprMatr) <- paste("Sample", 1:5, sep="")
head(exprMatr)
## Sample1 Sample2 Sample3 Sample4 Sample5
## Gene1 1 7 4 4 4
## Gene2 4 3 1 7 4
## Gene3 9 8 1 8 6
## Gene4 10 6 7 1 1
## Gene5 9 7 9 10 10
## Gene6 3 3 1 1 7
This matrix contains the expression data of 20 genes from 5 samples. The expression data does not need to be normalised in any particular way (but whether it is normalized/filtered/log-transformed WILL affect the results!).
The following command runs GENIE3 on the expression data exprMatr
with the default parameters:
library(GENIE3)
set.seed(123) # For reproducibility of results
weightMat <- GENIE3(exprMatr)
dim(weightMat)
## [1] 20 20
weightMat[1:5,1:5]
## Gene1 Gene2 Gene3 Gene4 Gene5
## Gene1 0.00000000 0.004314142 0.01160734 0.04648048 0.110089623
## Gene2 0.01974895 0.000000000 0.13513439 0.02964755 0.047045530
## Gene3 0.08443515 0.061021775 0.00000000 0.04874953 0.008910917
## Gene4 0.07489540 0.043090627 0.01829565 0.00000000 0.073521481
## Gene5 0.10108787 0.031865604 0.00582215 0.15448262 0.000000000
The algorithm outputs a matrix containing the weights of the putative regulatory links, with higher weights corresponding to more likely regulatory links. weightMat[i,j]
is the weight of the link directed from the \(i\)-th gene to \(j\)-th gene.
By default, all the genes in exprMatr
are used as candidate regulators. The list of candidate regulators can however be restricted to a subset of genes. This can be useful when you know which genes are transcription factors.
# Genes that are used as candidate regulators
regulators <- c(2, 4, 7)
# Or alternatively:
regulators <- c("Gene2", "Gene4", "Gene7")
weightMat <- GENIE3(exprMatr, regulators=regulators)
Here, only Gene2
, Gene4
and Gene7
(respectively corresponding to rows 2, 4 and 7 in exprMatr
) were used as candidate regulators. In the resulting weightMat
, the links that are directed from genes that are not candidate regulators have a weight equal to 0.
To request different regulators for each gene & return as list:
regulatorsList <- list("Gene1"=rownames(exprMatr)[1:10],
"Gene2"=rownames(exprMatr)[10:20],
"Gene20"=rownames(exprMatr)[15:20])
set.seed(123)
weightList <- GENIE3(exprMatr, nCores=1, targets=names(regulatorsList), regulators=regulatorsList, returnMatrix=FALSE)
GENIE3 is based on regression trees. These trees can be learned using either the Random Forest method 1 Breiman L. (2001) Random forests. Machine learning, 45(1):5-32. or the Extra-Trees method 2 Geurts P., Ernst D. and Wehenkel L. (2006) Extremely randomized trees. Machine learning, 36(1):3-42.. The tree-based method can be specified using the tree.method
parameter (tree.method="RF"
for Random Forests, which is the default choice, or tree.method="ET"
for Extra-Trees).
Each tree-based method has two parameters: K
and ntrees
. K
is the number of candidate regulators that are randomly selected at each tree node for the best split determination. Let \(p\) be the number of candidate regulators. K
must be either:
"sqrt"
, which sets \(K=\sqrt{p}\). This is the default value."all"
, which sets \(K=p\).The parameter ntrees
specifies the number of trees that are grown per ensemble. It can be set to any strictly positive integer (the default value is 1000).
An example is shown below:
# Use Extra-Trees (ET) method
# 7 randomly chosen candidate regulators at each node of a tree
# 5 trees per ensemble
weightMat <- GENIE3(exprMatr, treeMethod="ET", K=7, nTrees=50)
To decrease the computing times, GENIE3 can be run on multiple cores. The parameter ncores
specifies the number of cores you want to use. For example:
set.seed(123) # For reproducibility of results
weightMat <- GENIE3(exprMatr, nCores=4, verbose=TRUE)
Note that seet.seed
allows to get the same results across different runs, but only within nCores==1
or nCores>1
. e.g. A run with set.seed(123)
and nCores=1
and another with the same seed but nCores>1
may provide different results.
?GENIE3
You can obtain the list of all the regulatory links (from most likely to least likely) with this command:
linkList <- getLinkList(weightMat)
dim(linkList)
## [1] 57 3
head(linkList)
## regulatoryGene targetGene weight
## 1 Gene4 Gene13 0.7684187
## 2 Gene4 Gene15 0.7360821
## 3 Gene2 Gene11 0.7297097
## 4 Gene2 Gene4 0.6785133
## 5 Gene4 Gene9 0.6509499
## 6 Gene2 Gene7 0.6495525
The resulting linkList
matrix contains the ranking of links. Each row corresponds to a regulatory link. The first column shows the regulator, the second column shows the target gene, and the last column indicates the weight of the link.
(Note that the ranking that is obtained will be slightly different from one run to another. This is due to the intrinsic randomness of the Random Forest and Extra-Trees methods. The variance of the ranking can be decreased by increasing the number of trees per ensemble.)
Usually, one is only interested in extracting the most likely regulatory links. The optional parameter report.max
sets the number of top-ranked links to report:
linkList <- getLinkList(weightMat, reportMax=5)
Alternatively, a threshold can be set on the weights of the links:
linkList <- getLinkList(weightMat, threshold=0.1)
The weights of the links returned by GENIE3()
do not have any statistical meaning and only provide a way to rank the regulatory links. There is therefore no standard threshold value, and caution must be taken when choosing one.
?getLinkList