Contents

1 Introduction

Gene regulatory networks model the underlying gene regulation hierarchies that drive gene expression and cell states. The main functions of this package are to construct gene regulatory networks and infer transcription factor (TF) activity at the single cell level by integrating scATAC-seq and scRNA-seq data and incorporating of public bulk TF ChIP-seq data.

There are three related packages: epiregulon, epiregulon.extra and epiregulon.archr, the two of which are available through Bioconductor and the last of which is only available through github. The basic epiregulon package takes in gene expression and chromatin accessibility matrices in the form of SingleCellExperiment objects, constructs gene regulatory networks (“regulons”) and outputs the activity of transcription factors at the single cell level. The epiregulon.extra package provides a suite of tools for enrichment analysis of target genes, visualization of target genes and transcription factor activity, and network analysis which can be run on the epiregulon output. If the users would like to start from ArchR projects instead of SingleCellExperiment objects, they may choose to use epiregulon.archr package, which allows for seamless integration with the ArchR package, and continue with the rest of the workflow offered in epiregulon.extra.

For full documentation of the epiregulon package, please refer to the epiregulon book.

2 Installation

if (!require("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
 
BiocManager::install("epiregulon")

Alternatively, you could install from github

devtools::install_github(repo ='xiaosaiyao/epiregulon')

Load package

library(epiregulon)
#> Loading required package: SingleCellExperiment
#> Loading required package: SummarizedExperiment
#> Loading required package: MatrixGenerics
#> Loading required package: matrixStats
#> 
#> Attaching package: 'MatrixGenerics'
#> The following objects are masked from 'package:matrixStats':
#> 
#>     colAlls, colAnyNAs, colAnys, colAvgsPerRowSet, colCollapse,
#>     colCounts, colCummaxs, colCummins, colCumprods, colCumsums,
#>     colDiffs, colIQRDiffs, colIQRs, colLogSumExps, colMadDiffs,
#>     colMads, colMaxs, colMeans2, colMedians, colMins, colOrderStats,
#>     colProds, colQuantiles, colRanges, colRanks, colSdDiffs, colSds,
#>     colSums2, colTabulates, colVarDiffs, colVars, colWeightedMads,
#>     colWeightedMeans, colWeightedMedians, colWeightedSds,
#>     colWeightedVars, rowAlls, rowAnyNAs, rowAnys, rowAvgsPerColSet,
#>     rowCollapse, rowCounts, rowCummaxs, rowCummins, rowCumprods,
#>     rowCumsums, rowDiffs, rowIQRDiffs, rowIQRs, rowLogSumExps,
#>     rowMadDiffs, rowMads, rowMaxs, rowMeans2, rowMedians, rowMins,
#>     rowOrderStats, rowProds, rowQuantiles, rowRanges, rowRanks,
#>     rowSdDiffs, rowSds, rowSums2, rowTabulates, rowVarDiffs, rowVars,
#>     rowWeightedMads, rowWeightedMeans, rowWeightedMedians,
#>     rowWeightedSds, rowWeightedVars
#> Loading required package: GenomicRanges
#> Loading required package: stats4
#> Loading required package: BiocGenerics
#> Loading required package: generics
#> 
#> Attaching package: 'generics'
#> The following objects are masked from 'package:base':
#> 
#>     as.difftime, as.factor, as.ordered, intersect, is.element, setdiff,
#>     setequal, union
#> 
#> Attaching package: 'BiocGenerics'
#> The following objects are masked from 'package:stats':
#> 
#>     IQR, mad, sd, var, xtabs
#> The following objects are masked from 'package:base':
#> 
#>     Filter, Find, Map, Position, Reduce, anyDuplicated, aperm, append,
#>     as.data.frame, basename, cbind, colnames, dirname, do.call,
#>     duplicated, eval, evalq, get, grep, grepl, is.unsorted, lapply,
#>     mapply, match, mget, order, paste, pmax, pmax.int, pmin, pmin.int,
#>     rank, rbind, rownames, sapply, saveRDS, table, tapply, unique,
#>     unsplit, which.max, which.min
#> Loading required package: S4Vectors
#> 
#> Attaching package: 'S4Vectors'
#> The following object is masked from 'package:utils':
#> 
#>     findMatches
#> The following objects are masked from 'package:base':
#> 
#>     I, expand.grid, unname
#> Loading required package: IRanges
#> Loading required package: Seqinfo
#> Loading required package: Biobase
#> Welcome to Bioconductor
#> 
#>     Vignettes contain introductory material; view with
#>     'browseVignettes()'. To cite Bioconductor, see
#>     'citation("Biobase")', and for packages 'citation("pkgname")'.
#> 
#> Attaching package: 'Biobase'
#> The following object is masked from 'package:MatrixGenerics':
#> 
#>     rowMedians
#> The following objects are masked from 'package:matrixStats':
#> 
#>     anyMissing, rowMedians

3 Data preparation

Prior to using epiregulon, single cell preprocessing needs to performed by user’s favorite methods. The following components are required:
1. Peak matrix from scATAC-seq containing the chromatin accessibility information
2. Gene expression matrix from either paired or unpaired scRNA-seq. RNA-seq integration needs to be performed for unpaired dataset.
3. Dimensionality reduction matrix from either single modality dataset or joint scRNA-seq and scATAC-seq

This tutorial demonstrates the basic functions of epiregulon, using the reprogram-seq dataset which can be downloaded from the scMultiome package. In this example, prostate cancer cells (LNCaP) were infected in separate wells with viruses encoding 4 transcription factors (NKX2-1, GATA6, FOXA1 and FOXA2) and a positive control (mNeonGreen) before pooling. The identity of the infected transcription factors was tracked through cell hashing (available in the field hash_assignment of the colData) and serves as the ground truth.

# load the MAE object
library(scMultiome)
#> Loading required package: AnnotationHub
#> Loading required package: BiocFileCache
#> Loading required package: dbplyr
#> 
#> Attaching package: 'AnnotationHub'
#> The following object is masked from 'package:Biobase':
#> 
#>     cache
#> Loading required package: ExperimentHub
#> Loading required package: MultiAssayExperiment
mae <- scMultiome::reprogramSeq()
#> see ?scMultiome and browseVignettes('scMultiome') for documentation
#> loading from cache

# extract peak matrix
PeakMatrix <- mae[["PeakMatrix"]]

# extract expression matrix
GeneExpressionMatrix <- mae[["GeneExpressionMatrix"]]
rownames(GeneExpressionMatrix) <- rowData(GeneExpressionMatrix)$name

# define the order of hash_assigment
GeneExpressionMatrix$hash_assignment <- 
  factor(as.character(GeneExpressionMatrix$hash_assignment),
         levels = c("HTO10_GATA6_UTR", "HTO2_GATA6_v2", "HTO8_NKX2.1_UTR", "HTO3_NKX2.1_v2",
                    "HTO1_FOXA2_v2", "HTO4_mFOXA1_v2", "HTO6_hFOXA1_UTR", "HTO5_NeonG_v2"))
# extract dimensional reduction matrix
reducedDimMatrix <- reducedDim(mae[['TileMatrix500']], "LSI_ATAC")

# transfer UMAP_combined from TileMatrix to GeneExpressionMatrix
reducedDim(GeneExpressionMatrix, "UMAP_Combined") <- 
  reducedDim(mae[['TileMatrix500']], "UMAP_Combined")

Visualize singleCellExperiment by UMAP


scater::plotReducedDim(GeneExpressionMatrix, 
                       dimred = "UMAP_Combined", 
                       text_by = "Clusters", 
                       colour_by = "Clusters")

4 Quick start

4.1 Retrieve bulk TF ChIP-seq binding sites

First, we retrieve a GRangesList object containing the binding sites of all the transcription factors and co-regulators. These binding sites are derived from bulk ChIP-seq data in the ChIP-Atlas and ENCODE databases. For the same transcription factor, multiple ChIP-seq files from different cell lines or tissues are merged. For further information on how these peaks are derived, please refer to ?epiregulon::getTFMotifInfo. Currently, human genomes hg19 and hg38 and mouse mm10 are supported.

grl <- getTFMotifInfo(genome = "hg38")
#> Retrieving chip-seq data, version 2
#> see ?scMultiome and browseVignettes('scMultiome') for documentation
#> loading from cache
grl
#> GRangesList object of length 1377:
#> $AEBP2
#> GRanges object with 2700 ranges and 0 metadata columns:
#>          seqnames            ranges strand
#>             <Rle>         <IRanges>  <Rle>
#>      [1]     chr1        9792-10446      *
#>      [2]     chr1     942105-942400      *
#>      [3]     chr1     984486-984781      *
#>      [4]     chr1   3068932-3069282      *
#>      [5]     chr1   3069411-3069950      *
#>      ...      ...               ...    ...
#>   [2696]     chrY   8465261-8465730      *
#>   [2697]     chrY 11721744-11722260      *
#>   [2698]     chrY 11747448-11747964      *
#>   [2699]     chrY 19302661-19303134      *
#>   [2700]     chrY 19985662-19985982      *
#>   -------
#>   seqinfo: 25 sequences from an unspecified genome; no seqlengths
#> 
#> ...
#> <1376 more elements>

We recommend the use of ChIP-seq data over motif for estimating TF occupancy. However, if the user would like to start from motifs, it is possible to switch to the motif mode. The user can provide the peak regions as a GRanges object and the location of the motifs will be annotated based on Cisbp from chromVARmotifs (human_pwms_v2 and mouse_pwms_v2, version 0.2)

grl.motif <- getTFMotifInfo(genome = "hg38",  
                            mode = "motif", 
                            peaks = rowRanges(PeakMatrix))

4.3 Add TF motif binding to peaks

The next step is to add the TF binding information by overlapping regions of the peak matrix with the bulk chip-seq database. The output is a data frame object with three columns:

  1. idxATAC - index of the peak in the peak matrix
  2. idxTF - index in the gene expression matrix corresponding to the transcription factor
  3. tf - name of the transcription factor

overlap <- addTFMotifInfo(grl = grl, p2g = p2g, 
                          peakMatrix = PeakMatrix)
#> Computing overlap...
#> Success!
head(overlap)
#>   idxATAC idxTF    tf
#> 1       1    16  ATF1
#> 2       1    17  ATF2
#> 3       1    18  ATF3
#> 4       1    21  ATF7
#> 5       1    35 BRCA2
#> 6       1    36  BRD4

4.4 Generate regulons

A DataFrame, representing the inferred regulons, is then generated. The DataFrame consists of ten columns:

  1. idxATAC - index of the peak in the peak matrix
  2. chr - chromosome number
  3. start - start position of the peak
  4. end - end position of the peak
  5. idxRNA - index in the gene expression matrix corresponding to the target gene
  6. target - name of the target gene
  7. distance - distance between the transcription start site of the target gene and the middle of the peak
  8. idxTF - index in the gene expression matrix corresponding to the transcription factor
  9. tf - name of the transcription factor
  10. corr - correlation between target gene expression and the chromatin accessibility at the peak. if cluster labels are provided, this field is a matrix with columns names corresponding to correlation across all cells and for each of the clusters.

regulon <- getRegulon(p2g = p2g, overlap = overlap, 
                      aggregate = FALSE)
regulon
#> DataFrame with 5265039 rows and 12 columns
#>           idxATAC         chr     start       end    idxRNA      target
#>         <integer> <character> <integer> <integer> <integer> <character>
#> 1               1        chr1    817121    817621        15   LINC01409
#> 2               1        chr1    817121    817621        15   LINC01409
#> 3               1        chr1    817121    817621        15   LINC01409
#> 4               1        chr1    817121    817621        15   LINC01409
#> 5               1        chr1    817121    817621        15   LINC01409
#> ...           ...         ...       ...       ...       ...         ...
#> 5265035    126591        chrX 155264314 155264814     36424        VBP1
#> 5265036    126591        chrX 155264314 155264814     36424        VBP1
#> 5265037    126591        chrX 155264314 155264814     36424        VBP1
#> 5265038    126591        chrX 155264314 155264814     36424        VBP1
#> 5265039    126591        chrX 155264314 155264814     36424        VBP1
#>               all       all  distance     idxTF          tf     corr
#>         <numeric> <numeric> <integer> <integer> <character> <matrix>
#> 1       0.0197353  0.807341     38363        16        ATF1 0.670692
#> 2       0.0197353  0.807341     38363        17        ATF2 0.670692
#> 3       0.0197353  0.807341     38363        18        ATF3 0.670692
#> 4       0.0197353  0.807341     38363        21        ATF7 0.670692
#> 5       0.0197353  0.807341     38363        35       BRCA2 0.670692
#> ...           ...       ...       ...       ...         ...      ...
#> 5265035 0.0354463  0.833602     67307      1316      ZNF692 0.597658
#> 5265036 0.0354463  0.833602     67307      1357      ZNF843 0.597658
#> 5265037 0.0354463  0.833602     67307      1366     ZSCAN21 0.597658
#> 5265038 0.0354463  0.833602     67307      1370     ZSCAN30 0.597658
#> 5265039 0.0354463  0.833602     67307      1376        ZXDB 0.597658

4.6 Add Weights

While the pruneRegulon function provides statistics on the joint occurrence of TF-RE-TG, we would like to further estimate the strength of regulation. Biologically, this can be interpreted as the magnitude of gene expression changes induced by transcription factor activity. Epiregulon estimates the regulatory potential using one of the three measures: 1) correlation between TF and target gene expression, 2) mutual information between the TF and target gene expression and 3) Wilcoxon test statistics of target gene expression in cells jointly expressing all 3 elements vs cells that do not.

Two of the measures (correlation and Wilcoxon statistics) give both the magnitude and directionality of changes whereas mutual information is always positive. The correlation and mutual information statistics are computed on pseudobulks aggregated by user-supplied cluster labels, whereas the Wilcoxon method groups cells into two categories: 1) the active category of cells jointly expressing TF, RE and TG and 2) the inactive category consisting of the remaining cells.

We calculate cluster-specific weights if users supply cluster labels.


regulon.w <- addWeights(regulon = pruned.regulon,
                        expMatrix  = GeneExpressionMatrix,
                        exp_assay  = "normalizedCounts",
                        peakMatrix = PeakMatrix,
                        peak_assay = "counts",
                        clusters = GeneExpressionMatrix$Clusters,
                        method = "wilcox")

regulon.w

4.7 (Optional) Annotate with TF motifs

So far the gene regulatory network was constructed from TF ChIP-seq exclusively. Some users would prefer to further annotate regulatory elements with the presence of motifs. We provide an option to annotate peaks with motifs from the Cisbp database. If no motifs are present for this particular factor (as in the case of co-factors or chromatin modifiers), we return NA. If motifs are available for a factor and the RE contains a motif, we return 1. If motifs are available and the RE does not contain a motif, we return 0. The users can also provide their own motif annotation through the pwms argument.


regulon.w.motif <- addMotifScore(regulon = regulon.w,
                                 peaks = rowRanges(PeakMatrix),
                                 species = "human",
                                 genome = "hg38")
#> annotating peaks with motifs
#> see ?scMultiome and browseVignettes('scMultiome') for documentation
#> loading from cache
#> 
#> Attaching package: 'Biostrings'
#> The following object is masked from 'package:base':
#> 
#>     strsplit
#> 
#> Attaching package: 'rtracklayer'
#> The following object is masked from 'package:AnnotationHub':
#> 
#>     hubUrl

# if desired, set weight to 0 if no motif is found
regulon.w.motif$weight[regulon.w.motif$motif == 0] <- 0

regulon.w.motif
#> DataFrame with 12405 rows and 17 columns
#>         idxATAC         chr     start       end    idxRNA      target
#>       <integer> <character> <integer> <integer> <integer> <character>
#> 1            10        chr1    920987    921487        28       PERM1
#> 2            14        chr1    932922    933422        25       NOC2L
#> 3            14        chr1    932922    933422        20  AL645608.6
#> 4            14        chr1    932922    933422        28       PERM1
#> 5            37        chr1   1020509   1021009        33        AGRN
#> ...         ...         ...       ...       ...       ...         ...
#> 12401    123380        chr9 128635245 128635745     35034      SPTAN1
#> 12402    123444        chr9 129139814 129140314     35053     SH3GLB2
#> 12403    124120        chr9 137240872 137241372     35274       NELFB
#> 12404    124405        chrX  15737784  15738284     35402       AP1S2
#> 12405    124978        chrX  47541057  47541557     35594       ZNF41
#>              all     all.1  distance     idxTF          tf      corr
#>        <numeric> <numeric> <integer> <integer> <character>  <matrix>
#> 1      0.0258515  0.830017     59540       485          AR  0.638859
#> 2      0.0436110  0.929824     25832       485          AR -0.395829
#> 3      0.0142633  0.927415     28088       485          AR -0.482178
#> 4      0.0469135  0.929824     47605       485          AR -0.388740
#> 5      0.0258060  0.830017       389       485          AR  0.639086
#> ...          ...       ...       ...       ...         ...       ...
#> 12401 0.00356964  0.775443     82687       723      NKX2-1  0.843048
#> 12402 0.04196865  0.929824    111629       723      NKX2-1 -0.399388
#> 12403 0.04450355  0.929824     13953       723      NKX2-1 -0.394052
#> 12404 0.04650291  0.929824    116469       723      NKX2-1 -0.389650
#> 12405 0.02158235  0.929824     58472       723      NKX2-1 -0.452951
#>                          pval                    stats             qval
#>                      <matrix>                 <matrix>         <matrix>
#> 1     0.103465:0.880435:1:... 2.651304:0.0226256:0:...        1:1:1:...
#> 2     0.280507:0.843914:1:... 1.164630:0.0387653:0:...        1:1:1:...
#> 3     0.182226:0.509635:1:... 1.779378:0.4348165:0:...        1:1:1:...
#> 4     0.559820:0.787860:1:... 0.340016:0.0724101:0:...        1:1:1:...
#> 5     0.105800:0.564073:1:... 2.615861:0.3327009:0:...        1:1:1:...
#> ...                       ...                      ...              ...
#> 12401     4.51202e-02:1:1:...          4.01414:0:0:... 1.000000:1:1:...
#> 12402     1.79623e-01:1:1:...          1.80074:0:0:... 1.000000:1:1:...
#> 12403     1.07516e-01:1:1:...          2.59036:0:0:... 1.000000:1:1:...
#> 12404     1.65845e-02:1:1:...          5.73982:0:0:... 1.000000:1:1:...
#> 12405     9.49637e-06:1:1:...         19.61014:0:0:... 0.680861:1:1:...
#>          weight     motif
#>        <matrix> <numeric>
#> 1     0:0:0:...         0
#> 2     0:0:0:...         0
#> 3     0:0:0:...         0
#> 4     0:0:0:...         0
#> 5     0:0:0:...         0
#> ...         ...       ...
#> 12401 0:0:0:...         0
#> 12402 0:0:0:...         0
#> 12403 0:0:0:...         0
#> 12404 0:0:0:...         0
#> 12405 0:0:0:...         0

4.8 (Optional) Annotate with log fold changes

It is sometimes helpful to filter the regulons based on gene expression changes between two conditions. The addLogFC function is a wrapper around scran::findMarkers and adds extra columns of log changes to the regulon DataFrame. The users can specify the reference condition in logFC_ref and conditions for comparison in logFC_condition. If these are not provided, log fold changes are calculated for every condition in the cluster labels against the rest of the conditions.

regulon.w <- addLogFC(regulon = regulon.w,
                      clusters = GeneExpressionMatrix$hash_assignment,
                      expMatrix  = GeneExpressionMatrix,
                      assay.type  = "normalizedCounts",
                      pval.type = "any",
                      logFC_condition = c("HTO10_GATA6_UTR", 
                                          "HTO2_GATA6_v2", 
                                          "HTO8_NKX2.1_UTR"),
                      logFC_ref = "HTO5_NeonG_v2")

regulon.w
#> DataFrame with 12405 rows and 25 columns
#>         idxATAC         chr     start       end    idxRNA      target
#>       <integer> <character> <integer> <integer> <integer> <character>
#> 1            10        chr1    920987    921487        28       PERM1
#> 2            14        chr1    932922    933422        25       NOC2L
#> 3            14        chr1    932922    933422        20  AL645608.6
#> 4            14        chr1    932922    933422        28       PERM1
#> 5            37        chr1   1020509   1021009        33        AGRN
#> ...         ...         ...       ...       ...       ...         ...
#> 12401    123380        chr9 128635245 128635745     35034      SPTAN1
#> 12402    123444        chr9 129139814 129140314     35053     SH3GLB2
#> 12403    124120        chr9 137240872 137241372     35274       NELFB
#> 12404    124405        chrX  15737784  15738284     35402       AP1S2
#> 12405    124978        chrX  47541057  47541557     35594       ZNF41
#>              all     all.1  distance     idxTF          tf      corr
#>        <numeric> <numeric> <integer> <integer> <character>  <matrix>
#> 1      0.0258515  0.830017     59540       485          AR  0.638859
#> 2      0.0436110  0.929824     25832       485          AR -0.395829
#> 3      0.0142633  0.927415     28088       485          AR -0.482178
#> 4      0.0469135  0.929824     47605       485          AR -0.388740
#> 5      0.0258060  0.830017       389       485          AR  0.639086
#> ...          ...       ...       ...       ...         ...       ...
#> 12401 0.00356964  0.775443     82687       723      NKX2-1  0.843048
#> 12402 0.04196865  0.929824    111629       723      NKX2-1 -0.399388
#> 12403 0.04450355  0.929824     13953       723      NKX2-1 -0.394052
#> 12404 0.04650291  0.929824    116469       723      NKX2-1 -0.389650
#> 12405 0.02158235  0.929824     58472       723      NKX2-1 -0.452951
#>                          pval                    stats             qval
#>                      <matrix>                 <matrix>         <matrix>
#> 1     0.103465:0.880435:1:... 2.651304:0.0226256:0:...        1:1:1:...
#> 2     0.280507:0.843914:1:... 1.164630:0.0387653:0:...        1:1:1:...
#> 3     0.182226:0.509635:1:... 1.779378:0.4348165:0:...        1:1:1:...
#> 4     0.559820:0.787860:1:... 0.340016:0.0724101:0:...        1:1:1:...
#> 5     0.105800:0.564073:1:... 2.615861:0.3327009:0:...        1:1:1:...
#> ...                       ...                      ...              ...
#> 12401     4.51202e-02:1:1:...          4.01414:0:0:... 1.000000:1:1:...
#> 12402     1.79623e-01:1:1:...          1.80074:0:0:... 1.000000:1:1:...
#> 12403     1.07516e-01:1:1:...          2.59036:0:0:... 1.000000:1:1:...
#> 12404     1.65845e-02:1:1:...          5.73982:0:0:... 1.000000:1:1:...
#> 12405     9.49637e-06:1:1:...         19.61014:0:0:... 0.680861:1:1:...
#>                             weight HTO10_GATA6_UTR.vs.HTO5_NeonG_v2.FDR
#>                           <matrix>                            <numeric>
#> 1     0.02638820:-0.00723681:0:...                            1.0000000
#> 2     0.01967612: 0.00569181:0:...                            0.8877117
#> 3     0.03590731:-0.03273486:0:...                            0.1962469
#> 4     0.00967161:-0.01328838:0:...                            1.0000000
#> 5     0.02420994:-0.02931996:0:...                            0.0025339
#> ...                            ...                                  ...
#> 12401            0.0277381:0:0:...                             0.887712
#> 12402            0.0211504:0:0:...                             1.000000
#> 12403            0.0246483:0:0:...                             1.000000
#> 12404            0.0397841:0:0:...                             1.000000
#> 12405            0.0696895:0:0:...                             0.887712
#>       HTO10_GATA6_UTR.vs.HTO5_NeonG_v2.p.value
#>                                      <numeric>
#> 1                                    -0.472454
#> 2                                    -1.483372
#> 3                                    -3.378154
#> 4                                    -0.472454
#> 5                                    -6.058167
#> ...                                        ...
#> 12401                                -1.898997
#> 12402                                -0.371363
#> 12403                                -0.368423
#> 12404                                -0.803355
#> 12405                                -1.166958
#>       HTO10_GATA6_UTR.vs.HTO5_NeonG_v2.logFC HTO2_GATA6_v2.vs.HTO5_NeonG_v2.FDR
#>                                    <numeric>                          <numeric>
#> 1                                  0.0176006                        0.893988956
#> 2                                 -0.1412783                        0.895933489
#> 3                                 -0.0911534                        1.000000000
#> 4                                  0.0176006                        0.893988956
#> 5                                  0.1994077                        0.000139132
#> ...                                      ...                                ...
#> 12401                              0.2050531                         0.00307454
#> 12402                             -0.0362103                         1.00000000
#> 12403                             -0.0267824                         1.00000000
#> 12404                             -0.0509012                         0.89398896
#> 12405                              0.0625180                         1.00000000
#>       HTO2_GATA6_v2.vs.HTO5_NeonG_v2.p.value
#>                                    <numeric>
#> 1                                  -1.145474
#> 2                                  -1.144116
#> 3                                  -0.343245
#> 4                                  -1.145474
#> 5                                  -7.741202
#> ...                                      ...
#> 12401                              -6.026253
#> 12402                              -0.469407
#> 12403                              -0.659279
#> 12404                              -1.552821
#> 12405                              -0.534401
#>       HTO2_GATA6_v2.vs.HTO5_NeonG_v2.logFC HTO8_NKX2.1_UTR.vs.HTO5_NeonG_v2.FDR
#>                                  <numeric>                            <numeric>
#> 1                               -0.0149532                             1.000000
#> 2                               -0.1133546                             1.000000
#> 3                               -0.0188867                             1.000000
#> 4                               -0.0149532                             1.000000
#> 5                                0.2082171                             0.958744
#> ...                                    ...                                  ...
#> 12401                            0.4512613                             1.000000
#> 12402                           -0.0372181                             1.000000
#> 12403                           -0.0385909                             1.000000
#> 12404                           -0.0755870                             0.958744
#> 12405                            0.0299230                             0.958744
#>       HTO8_NKX2.1_UTR.vs.HTO5_NeonG_v2.p.value
#>                                      <numeric>
#> 1                                    -0.246419
#> 2                                    -0.938064
#> 3                                    -0.423747
#> 4                                    -0.246419
#> 5                                    -2.383256
#> ...                                        ...
#> 12401                                -1.069575
#> 12402                                -0.345850
#> 12403                                -0.699325
#> 12404                                -1.565060
#> 12405                                -1.380162
#>       HTO8_NKX2.1_UTR.vs.HTO5_NeonG_v2.logFC
#>                                    <numeric>
#> 1                                -0.00462386
#> 2                                -0.09873793
#> 3                                 0.02202929
#> 4                                -0.00462386
#> 5                                 0.09920628
#> ...                                      ...
#> 12401                              0.1178727
#> 12402                              0.0288156
#> 12403                             -0.0414649
#> 12404                             -0.0764675
#> 12405                              0.0593372

4.9 Calculate TF activity

Finally, the activities for a specific TF in each cell are computed by averaging expressions of target genes linked to the TF weighted by the test statistics of choice, chosen from either correlation, mutual information or the Wilcoxon test statistics. \[y=\frac{1}{n}\sum_{i=1}^{n} x_i * weights_i\] where \(y\) is the activity of a TF for a cell, \(n\) is the total number of targets for a TF, \(x_i\) is the log count expression of target \(i\) where \(i\) in {1,2,…,n} and \(weights_i\) is the weight of TF - target \(i\)

score.combine <- calculateActivity(expMatrix = GeneExpressionMatrix,
                                   regulon = regulon.w, 
                                   mode = "weight", 
                                   method = "weightedMean", 
                                   exp_assay = "normalizedCounts",
                                   normalize = FALSE)
#> Warning in calculateActivity(expMatrix = GeneExpressionMatrix, regulon =
#> regulon.w, : Argument 'method' to calculateActivity was deprecated as of
#> epiregulon version 2.0.0
#> calculating TF activity from regulon using weightedMean
#> Warning in calculateActivity(expMatrix = GeneExpressionMatrix, regulon = regulon.w, : The weight column contains multiple subcolumns but no cluster information was provided.
#>           Using first column to compute activity...
#> aggregating regulons...
#> creating weight matrix...
#> calculating activity scores...
#> normalize by the number of targets...

score.combine[1:5,1:5]
#> 5 x 5 sparse Matrix of class "dgCMatrix"
#>        reprogram#TTAGGAACAAGGTACG-1 reprogram#GAGCGGTCAACCTGGT-1
#> AR                       0.01748754                   0.01902210
#> FOXA1                    0.01594352                   0.01562493
#> FOXA2                    0.01668285                   0.02000509
#> GATA6                    0.01590999                   0.05706049
#> NKX2-1                   0.02949717                   0.01737281
#>        reprogram#TTATAGCCACCCTCAC-1 reprogram#TGGTGATTCCTGTTCA-1
#> AR                      0.010467290                  0.010765099
#> FOXA1                   0.010635861                  0.010349299
#> FOXA2                   0.012503277                  0.014421759
#> GATA6                   0.009035979                  0.007895991
#> NKX2-1                  0.012772370                  0.011795167
#>        reprogram#TCGGTTCTCACTAGGT-1
#> AR                       0.01775971
#> FOXA1                    0.01581682
#> FOXA2                    0.01439649
#> GATA6                    0.01188049
#> NKX2-1                   0.02613054

5 Session Info

sessionInfo()
#> R version 4.5.1 Patched (2025-08-23 r88802)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.22-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.0  LAPACK version 3.12.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB              LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats4    stats     graphics  grDevices utils     datasets  methods  
#> [8] base     
#> 
#> other attached packages:
#>  [1] BSgenome.Hsapiens.UCSC.hg38_1.4.5 BSgenome_1.77.2                  
#>  [3] rtracklayer_1.69.1                BiocIO_1.19.0                    
#>  [5] Biostrings_2.77.2                 XVector_0.49.1                   
#>  [7] GenomeInfoDb_1.45.12              scMultiome_1.9.0                 
#>  [9] MultiAssayExperiment_1.35.9       ExperimentHub_2.99.5             
#> [11] AnnotationHub_3.99.6              BiocFileCache_2.99.6             
#> [13] dbplyr_2.5.1                      epiregulon_1.99.1                
#> [15] SingleCellExperiment_1.31.1       SummarizedExperiment_1.39.2      
#> [17] Biobase_2.69.1                    GenomicRanges_1.61.5             
#> [19] Seqinfo_0.99.2                    IRanges_2.43.5                   
#> [21] S4Vectors_0.47.4                  BiocGenerics_0.55.3              
#> [23] generics_0.1.4                    MatrixGenerics_1.21.0            
#> [25] matrixStats_1.5.0                 BiocStyle_2.37.1                 
#> 
#> loaded via a namespace (and not attached):
#>   [1] RColorBrewer_1.1-3          jsonlite_2.0.0             
#>   [3] magrittr_2.0.4              ggbeeswarm_0.7.2           
#>   [5] magick_2.9.0                farver_2.1.2               
#>   [7] rmarkdown_2.30              vctrs_0.6.5                
#>   [9] memoise_2.0.1               Rsamtools_2.25.3           
#>  [11] RCurl_1.98-1.17             tinytex_0.57               
#>  [13] htmltools_0.5.8.1           S4Arrays_1.9.1             
#>  [15] BiocBaseUtils_1.11.2        curl_7.0.0                 
#>  [17] BiocNeighbors_2.3.1         Rhdf5lib_1.31.1            
#>  [19] SparseArray_1.9.1           rhdf5_2.53.6               
#>  [21] sass_0.4.10                 bslib_0.9.0                
#>  [23] httr2_1.2.1                 cachem_1.1.0               
#>  [25] GenomicAlignments_1.45.4    igraph_2.2.0               
#>  [27] lifecycle_1.0.4             pkgconfig_2.0.3            
#>  [29] rsvd_1.0.5                  Matrix_1.7-4               
#>  [31] R6_2.6.1                    fastmap_1.2.0              
#>  [33] digest_0.6.37               TFMPvalue_0.0.9            
#>  [35] AnnotationDbi_1.71.2        scater_1.37.0              
#>  [37] dqrng_0.4.1                 irlba_2.3.5.1              
#>  [39] RSQLite_2.4.3               beachmat_2.25.5            
#>  [41] seqLogo_1.75.0              filelock_1.0.3             
#>  [43] labeling_0.4.3              httr_1.4.7                 
#>  [45] abind_1.4-8                 compiler_4.5.1             
#>  [47] bit64_4.6.0-1               withr_3.0.2                
#>  [49] S7_0.2.0                    backports_1.5.0            
#>  [51] BiocParallel_1.43.4         viridis_0.6.5              
#>  [53] DBI_1.2.3                   HDF5Array_1.37.0           
#>  [55] rappdirs_0.3.3              DelayedArray_0.35.3        
#>  [57] bluster_1.19.0              rjson_0.2.23               
#>  [59] gtools_3.9.5                caTools_1.18.3             
#>  [61] tools_4.5.1                 vipor_0.4.7                
#>  [63] beeswarm_0.4.0              glue_1.8.0                 
#>  [65] h5mread_1.1.1               restfulr_0.0.16            
#>  [67] rhdf5filters_1.21.4         grid_4.5.1                 
#>  [69] checkmate_2.3.3             cluster_2.1.8.1            
#>  [71] TFBSTools_1.47.1            gtable_0.3.6               
#>  [73] metapod_1.17.0              BiocSingular_1.25.0        
#>  [75] ScaledMatrix_1.17.0         ggrepel_0.9.6              
#>  [77] BiocVersion_3.22.0          pillar_1.11.1              
#>  [79] motifmatchr_1.31.1          limma_3.65.5               
#>  [81] dplyr_1.1.4                 lattice_0.22-7             
#>  [83] bit_4.6.0                   DirichletMultinomial_1.51.0
#>  [85] tidyselect_1.2.1            locfit_1.5-9.12            
#>  [87] scuttle_1.19.0              knitr_1.50                 
#>  [89] gridExtra_2.3               scrapper_1.3.13            
#>  [91] bookdown_0.45               edgeR_4.7.6                
#>  [93] xfun_0.53                   statmod_1.5.1              
#>  [95] UCSC.utils_1.5.0            yaml_2.3.10                
#>  [97] evaluate_1.0.5              codetools_0.2-20           
#>  [99] tibble_3.3.0                BiocManager_1.30.26        
#> [101] cli_3.6.5                   jquerylib_0.1.4            
#> [103] dichromat_2.0-0.1           Rcpp_1.1.0                 
#> [105] png_0.1-8                   XML_3.99-0.19              
#> [107] parallel_4.5.1              ggplot2_4.0.0              
#> [109] blob_1.2.4                  scran_1.37.0               
#> [111] bitops_1.0-9                pwalign_1.5.0              
#> [113] viridisLite_0.4.2           scales_1.4.0               
#> [115] purrr_1.1.0                 crayon_1.5.3               
#> [117] rlang_1.1.6                 cowplot_1.2.0              
#> [119] KEGGREST_1.49.2