ATAC-seq, an assay for Transposase-Accessible Chromatin using sequencing, is a widely used technique for chromatin accessibility analysis. Detecting differential activation of transcription factors between two different experiment conditions provides the possibility of decoding the key factors in a phenotype. Lots of tools have been developed to detect the differential activity of TFs (DATFs) for different groups of samples. Those tools can be divided into two groups. One group detects DATFs from differential accessibility analysis, such as MEME1, HOMER2, enrichr3, and ChEA4. Another group finds the DATFs by enrichment tests, such as BiFET5, diffTF6, and TFEA7. For single-cell ATAC-seq analysis, Signac and chromVar are widely used tools.
All of these tools detect the DATF by only considering the open status of chromatin. None of them take the TF footprint into count. The open status provides the possibility of TF can bind to that position. The TF footprint by ATAC-seq shows the status of TF bindings.
To help researchers quickly assess the differential activity of hundreds of TFs by detecting the difference in TF footprint via enrichment score8, we have developed the ATACseqTFEA package. The ATACseqTFEA package is a robust and reliable computational tool to identify the key regulators responding to a phenotype.
Here is an example using ATACseqTFEA with a subset of ATAC-seq data.
First, install ATACseqTFEA and other packages required to run
the examples.
Please note that the example dataset used here is from zebrafish.
To run an analysis with a dataset from a different species or different assembly,
please install the corresponding Bsgenome and “TxDb”.
For example, to analyze mouse data aligned to “mm10”,
please install “BSgenome.Mmusculus.UCSC.mm10”,
and “TxDb.Mmusculus.UCSC.mm10.knownGene”.
You can also generate a TxDb object by
functions makeTxDbFromGFF
from a local “gff” file,
or makeTxDbFromUCSC
, makeTxDbFromBiomart
, and makeTxDbFromEnsembl
,
from online resources in the GenomicFeatures package.
library(BiocManager)
BiocManager::install(c("ATACseqTFEA",
"ATACseqQC",
"Rsamtools",
"BSgenome.Drerio.UCSC.danRer10",
"TxDb.Drerio.UCSC.danRer10.refGene"))
library(ATACseqTFEA)
library(BSgenome.Drerio.UCSC.danRer10) ## for binding sites search
library(ATACseqQC) ## for footprint
To do TFEA, there are two inputs, the binding sites, and the change ranks.
To get the binding sites, the ATACseqTFEA package provides the
prepareBindingSites
function. Users can also try to get the binding sites
list by other tools such as “fimo”9.
The prepareBindingSites
function request a cluster of position weight matrix
(PWM) of TF motifs. ATACseqTFEA prepared a merged PWMatrixList
for
405 motifs. The PWMatrixList
is a collection of jasper2018, jolma2013 and
cisbp_1.02 from package motifDB (v 1.28.0) and merged by distance smaller than
1e-9 calculated by MotIV::motifDistances function (v 1.42.0).
The merged motifs were exported by motifStack (v 1.30.0).
motifs <- readRDS(system.file("extdata", "PWMatrixList.rds",
package="ATACseqTFEA"))
The best_curated_Human
is a list of TF motifs
downloaded from TFEA github7.
There are 1279 human motifs in the data set.
motifs_human <- readRDS(system.file("extdata", "best_curated_Human.rds",
package="ATACseqTFEA"))
Another list of non-redundant TF motifs are also available by downloading the data from DeepSTARR10. There are 6502 motifs in the data set.
MotifsSTARR <- readRDS(system.file("extdata", "cluster_PWMs.rds",
package="ATACseqTFEA"))
To scan the binding sites along a genome, a BSgenome
object is required by
the prepareBindingSites
function.
# for test run, we use a subset of data within chr1:5000-100000
# for real data, use the merged peaklist as grange input.
# Drerio is the short-link of BSgenome.Drerio.UCSC.danRer10
seqlev <- "chr1"
bindingSites <-
prepareBindingSites(motifs, Drerio, seqlev,
grange=GRanges("chr1", IRanges(5000, 100000)),
p.cutoff = 5e-05)#set higher p.cutoff to get more sites.
The correct insertion site is the key to the enrichment analysis of TF binding
sites. The parameter positive
and negative
in the function of TFEA
are used to shift the 5’ ends of the reads to the correct insertion positions.
However, this shift does not consider the soft clip of the reads.
The best way to generate correct shifted bam files is using
ATACseqQC::shiftGAlignmentsList11 for paired-end or
shiftGAlignments for single-end of the bam file.
The samples must be at least biologically duplicated for the one-step TFEA
function.
bamExp <- system.file("extdata",
c("KD.shift.rep1.bam",
"KD.shift.rep2.bam"),
package="ATACseqTFEA")
bamCtl <- system.file("extdata",
c("WT.shift.rep1.bam",
"WT.shift.rep2.bam"),
package="ATACseqTFEA")
res <- TFEA(bamExp, bamCtl, bindingSites=bindingSites,
positive=0, negative=0) # the bam files were shifted reads
The results will be saved in a TFEAresults
object. We will use multiple
functions to present the results.
The plotES
function will return a ggplot
object for single TF input and
no outfolder
is defined.
The ESvolcanoplot
function will provide an overview of all the TFs enrichment.
And we can borrow the factorFootprints
function from ATACseqQC
package
to view the footprints of one TF.
TF <- "Tal1::Gata1"
## volcanoplot
ESvolcanoplot(TFEAresults=res, TFnameToShow=TF)
### plot enrichment score for one TF
plotES(res, TF=TF, outfolder=NA)
## footprint
sigs <- factorFootprints(c(bamCtl, bamExp),
pfm = as.matrix(motifs[[TF]]),
bindingSites = getBindingSites(res, TF=TF),
seqlev = seqlev, genome = Drerio,
upstream = 100, downstream = 100,
group = rep(c("WT", "KD"), each=2))
## export the results into a csv file
write.csv(res$resultsTable, tempfile(fileext = ".csv"),
row.names=FALSE)
The command-line scripts are available at extdata
named as sample_scripts.R
.
The one-step TFEA
is a function containing multiple steps, which include:
If you want to tune the parameters, it will be much better to do it step by step to avoid repeating the computation for the same step. Here are the details for each step.
We will count the insertion site in binding sites, proximal and distal regions
by counting the 5’ ends of the reads in a shifted bam file.
Here we suggest keeping the proximal
and distal
the same value.
# prepare the counting region
exbs <- expandBindingSites(bindingSites=bindingSites,
proximal=40,
distal=40,
gap=10)
## count reads by 5'ends
counts <- count5ends(bam=c(bamExp, bamCtl),
positive=0L, negative=0L,
bindingSites = bindingSites,
bindingSitesWithGap=exbs$bindingSitesWithGap,
bindingSitesWithProximal=exbs$bindingSitesWithProximal,
bindingSitesWithProximalAndGap=
exbs$bindingSitesWithProximalAndGap,
bindingSitesWithDistal=exbs$bindingSitesWithDistal)
We filter the binding sites by at least there is 1 reads in proximal region. Users may want to try filter the sites by more stringent criteria such as “proximalRegion>1”.
colnames(counts)
## [1] "bindingSites" "proximalRegion" "distalRegion"
counts <- eventsFilter(counts, "proximalRegion>0")
We will normalize the counts to count per base (CPB).
counts <- countsNormalization(counts, proximal=40, distal=40)
Here we use the open score to weight the binding score. Users can also define
the weight for binding score via parameter weight
in
the function getWeightedBindingScore
.
counts <- getWeightedBindingScore(counts)
Here we use DBscore
, which borrows the power of the limma
package,
to do differential binding analysis.
design <- cbind(CTL=1, EXPvsCTL=c(1, 1, 0, 0))
counts <- DBscore(counts, design=design, coef="EXPvsCTL")
We can filter the binding results to decrease the data size by
the function eventsFilter
.
For the sample data, we skip this step.
Last, we use the function doTFEA
to get the enrichment scores.
res <- doTFEA(counts)
res
## This is an object of TFEAresults with
## slot enrichmentScore ( matrix: 399 x 2166 ),
## slot bindingSites ( GRanges object with 2166 ranges and 12 metadata columns ),
## slot motifID ( a list of the positions of binding sites for 399 TFs ), and
## slot resultsTable ( 399 x 5 ). Here is the top 2 rows:
## TF enrichmentScore normalizedEnrichmentScore p_value adjPval
## NRF1 NRF1 0.1923613 0.7960275 0.7253614 0.9994472
## Gfi1b Gfi1b 0.3099024 1.3769160 0.1143751 0.9585665
plotES(res, TF=TF, outfolder=NA) ## will show same figure as above one
sessionInfo()
## R version 4.2.1 (2022-06-23)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.5 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.16-bioc/R/lib/libRlapack.so
##
## 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
##
## attached base packages:
## [1] stats4 stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] ATACseqQC_1.22.0 Rsamtools_2.14.0
## [3] BSgenome.Drerio.UCSC.danRer10_1.4.2 BSgenome_1.66.0
## [5] rtracklayer_1.58.0 Biostrings_2.66.0
## [7] XVector_0.38.0 GenomicRanges_1.50.0
## [9] GenomeInfoDb_1.34.0 IRanges_2.32.0
## [11] S4Vectors_0.36.0 BiocGenerics_0.44.0
## [13] ATACseqTFEA_1.0.1 BiocStyle_2.26.0
##
## loaded via a namespace (and not attached):
## [1] AnnotationHub_3.6.0 BiocFileCache_2.6.0
## [3] plyr_1.8.7 lazyeval_0.2.2
## [5] splines_4.2.1 BiocParallel_1.32.0
## [7] ggplot2_3.3.6 TFBSTools_1.36.0
## [9] digest_0.6.30 ensembldb_2.22.0
## [11] htmltools_0.5.3 magick_2.7.3
## [13] GO.db_3.16.0 fansi_1.0.3
## [15] magrittr_2.0.3 memoise_2.0.1
## [17] grImport2_0.2-0 tzdb_0.3.0
## [19] InteractionSet_1.26.0 limma_3.54.0
## [21] readr_2.1.3 annotate_1.76.0
## [23] matrixStats_0.62.0 R.utils_2.12.1
## [25] prettyunits_1.1.1 jpeg_0.1-9
## [27] colorspace_2.0-3 blob_1.2.3
## [29] rappdirs_0.3.3 ggrepel_0.9.1
## [31] xfun_0.34 dplyr_1.0.10
## [33] crayon_1.5.2 RCurl_1.98-1.9
## [35] jsonlite_1.8.3 graph_1.76.0
## [37] TFMPvalue_0.0.9 survival_3.4-0
## [39] glue_1.6.2 gtable_0.3.1
## [41] zlibbioc_1.44.0 DelayedArray_0.24.0
## [43] Rhdf5lib_1.20.0 HDF5Array_1.26.0
## [45] scales_1.2.1 futile.options_1.0.1
## [47] DBI_1.1.3 edgeR_3.40.0
## [49] Rcpp_1.0.9 xtable_1.8-4
## [51] progress_1.2.2 bit_4.0.4
## [53] htmlwidgets_1.5.4 httr_1.4.4
## [55] ellipsis_0.3.2 farver_2.1.1
## [57] pkgconfig_2.0.3 XML_3.99-0.12
## [59] R.methodsS3_1.8.2 sass_0.4.2
## [61] dbplyr_2.2.1 locfit_1.5-9.6
## [63] utf8_1.2.2 labeling_0.4.2
## [65] polynom_1.4-1 later_1.3.0
## [67] tidyselect_1.2.0 rlang_1.0.6
## [69] reshape2_1.4.4 AnnotationDbi_1.60.0
## [71] BiocVersion_3.16.0 munsell_0.5.0
## [73] tools_4.2.1 cachem_1.0.6
## [75] cli_3.4.1 DirichletMultinomial_1.40.0
## [77] generics_0.1.3 RSQLite_2.2.18
## [79] ade4_1.7-20 evaluate_0.17
## [81] stringr_1.4.1 fastmap_1.1.0
## [83] yaml_2.3.6 knitr_1.40
## [85] bit64_4.0.5 caTools_1.18.2
## [87] randomForest_4.7-1.1 KEGGREST_1.38.0
## [89] AnnotationFilter_1.22.0 RBGL_1.74.0
## [91] mime_0.12 formatR_1.12
## [93] R.oo_1.25.0 poweRlaw_0.70.6
## [95] pracma_2.4.2 xml2_1.3.3
## [97] biomaRt_2.54.0 compiler_4.2.1
## [99] interactiveDisplayBase_1.36.0 filelock_1.0.2
## [101] curl_4.3.3 png_0.1-7
## [103] preseqR_4.0.0 tibble_3.1.8
## [105] bslib_0.4.0 stringi_1.7.8
## [107] highr_0.9 futile.logger_1.4.3
## [109] GenomicFeatures_1.50.1 ChIPpeakAnno_3.32.0
## [111] lattice_0.20-45 ProtGenerics_1.30.0
## [113] CNEr_1.34.0 Matrix_1.5-1
## [115] multtest_2.54.0 vctrs_0.5.0
## [117] rhdf5filters_1.10.0 pillar_1.8.1
## [119] lifecycle_1.0.3 BiocManager_1.30.19
## [121] jquerylib_0.1.4 bitops_1.0-7
## [123] httpuv_1.6.6 R6_2.5.1
## [125] BiocIO_1.8.0 promises_1.2.0.1
## [127] bookdown_0.29 KernSmooth_2.23-20
## [129] motifStack_1.42.0 codetools_0.2-18
## [131] lambda.r_1.2.4 MASS_7.3-58.1
## [133] gtools_3.9.3 assertthat_0.2.1
## [135] seqLogo_1.64.0 rhdf5_2.42.0
## [137] SummarizedExperiment_1.28.0 rjson_0.2.21
## [139] withr_2.5.0 GenomicScores_2.10.0
## [141] regioneR_1.30.0 GenomicAlignments_1.34.0
## [143] GenomeInfoDbData_1.2.9 parallel_4.2.1
## [145] hms_1.1.2 motifmatchr_1.20.0
## [147] VennDiagram_1.7.3 grid_4.2.1
## [149] rmarkdown_2.17 MatrixGenerics_1.10.0
## [151] base64enc_0.1-3 shiny_1.7.3
## [153] Biobase_2.58.0 restfulr_0.0.15
1. Bailey, T. L., Williams, N., Misleh, C. & Li, W. W. MEME: Discovering and analyzing dna and protein sequence motifs. Nucleic acids research 34, W369–W373 (2006).
2. Heinz, S. et al. Simple combinations of lineage-determining transcription factors prime cis-regulatory elements required for macrophage and b cell identities. Molecular cell 38, 576–589 (2010).
3. Chen, E. Y. et al. Enrichr: Interactive and collaborative html5 gene list enrichment analysis tool. BMC bioinformatics 14, 128 (2013).
4. Lachmann, A. et al. ChEA: Transcription factor regulation inferred from integrating genome-wide chip-x experiments. Bioinformatics 26, 2438–2444 (2010).
5. Youn, A., Marquez, E. J., Lawlor, N., Stitzel, M. L. & Ucar, D. BiFET: Sequencing bi as-free transcription factor f ootprint e nrichment t est. Nucleic acids research 47, e11–e11 (2019).
6. Berest, I. et al. Quantification of differential transcription factor activity and multiomics-based classification into activators and repressors: DiffTF. Cell Reports 29, 3147–3159 (2019).
7. Rubin, J. D. et al. Transcription factor enrichment analysis (tfea): Quantifying the activity of hundreds of transcription factors from a single experiment. Commun Biol 661 (2021).
8. Subramanian, A. et al. Gene set enrichment analysis: A knowledge-based approach for interpreting genome-wide expression profiles. Proceedings of the National Academy of Sciences 102, 15545–15550 (2005).
9. Grant, C. E., Bailey, T. L. & Noble, W. S. FIMO: Scanning for occurrences of a given motif. Bioinformatics 27, 1017–1018 (2011).
10. Almeida, B. P. de, Reiter, F., Pagani, M. & Stark, A. DeepSTARR predicts enhancer activity from dna sequence and enables the de novo design of enhancers. bioRxiv (2021).
11. Ou, J. et al. ATACseqQC: A bioconductor package for post-alignment quality assessment of atac-seq data. BMC genomics 19, 169 (2018).