Identifying Active and Alternative Promoters from RNA-Seq data with proActiv

Joseph Lee, Deniz Demircioğlu, Jonathan Göke

Summary

Most human genes have multiple promoters that control the expression of distinct isoforms. The use of these alternative promoters enables the regulation of isoform expression pre-transcriptionally. Alternative promoters have been found to be important in a wide number of cell types and diseases.

proActiv is a method that enables the analysis of promoters from RNA-Seq data. proActiv uses aligned reads as input, and then generates counts and normalized promoter activity estimates for each annotated promoter. These estimates can then be used to identify which promoter is active, which promoter is inactive, and which promoters change their activity across conditions.

Here we present a quick start guide to using proActiv, and a detailed workflow for identifying active promoters and alternative promoters across 2 conditions.

If you use proActiv in your research, please cite:

Demircioğlu, Deniz, et al. “A Pan-cancer Transcriptome Analysis Reveals Pervasive Regulation through Alternative Promoters.” Cell 178.6 (2019): 1465-1477.

Contents

Quick Start: Quantifying promoter activity with proActiv

proActiv estimates promoter activity from RNA-Seq data. Promoter activity is defined as the total amount of transcription initiated at each promoter. proActiv takes as input either BAM files or junction files (TopHat2 or STAR), and a promoter annotation object of the relevant genome. An optional argument condition can be supplied, describing the condition corresponding to each input file. Here we demonstrate proActiv with STAR junction files (Human genome GRCh38 Gencode v34) as input. Due to size constraints, analysis is restricted to a subset of chr1 (10,000,000-30,000,000).

library(proActiv)

## List of STAR junction files as input
files <- list.files(system.file('extdata/vignette/junctions', 
                                package = 'proActiv'), full.names = TRUE)
## Vector describing experimental condition
condition <- rep(c('A549','HepG2'), each=3)
## Promoter annotation for human genome GENCODE v34 restricted to a subset of chr1
promoterAnnotation <- promoterAnnotation.gencode.v34.subset

result <- proActiv(files = files, 
                   promoterAnnotation = promoterAnnotation,
                   condition = condition)

result is a summarizedExperiment object which can be accessed as follows:

A complete workflow to identify alternative promoter usage

Here we present a complete step-by-step workflow for analyzing promoter activity with proActiv and for identifying alternative promoter usage across samples from different conditions. We will compare samples from 2 different cell lines (A549 and HepG2) to identify alternative promoters.

Preparing input data

proActiv uses RNA-Seq data to quantify promoter activity. Users have the option of using as input either BAM files, or tab-delimited junction files that are generated when TopHat2 or STAR is used for read alignment.

Below, we demonstrate running proActiv with input STAR junction files. This data is taken from the SGNEx project, and restricted to the chr1:10,000,000-30,000,000 region. The reference genome used for alignment is Gencode v34 (GRCh38). These files can be found in ‘extdata/vignette/junctions’:

Preparing promoter annotations

In order to quantify promoter activity, proActiv uses a set of promoters based on genome annotations. proActiv allows the creation of a promoter annotation object for any genome from a TxDb object or from a GTF file with the preparePromoterAnnotation function. Users have the option to either pass the file path of the GTF/GFF or TxDb to be used, or use the TxDb object directly as input. proActiv includes pre-calculated promoter annotations for the human genome (GENCODE v34). However, due to size constraints, the annotation is restricted to the chr1:10,000,000-30,000,000 region. Users can build full annotations by downloading GTF files from GENCODE page and following the steps below.

We demonstrate creating the restricted promoter annotation for the Human genome (GENCODE v34) with both GTF and TxDb:

The PromoterAnnotation object has 3 slots:

Running proActiv

Once promoters in the genome are identified, proActiv estimates promoter activity at each annotated promoter. Here, we load pre-calculated promoter annotation for GENCODE Release 34. We also supply the experimental condition to proActiv. This information allows proActiv to summarize results across conditions.

result is a SummarizedExperiment object with assays as raw/normalized promoter counts, and absolute/relative promoter activity:

The rowData slot stores a promoter-gene ID mapping and promoter position (5’ to 3’) for each promoter by gene. Mean absolute promoter activity for each condition is also summarized here. Promoters are also categorized into three classes. Promoters with activity < 0.25 are classified as inactive, while the most active promoters of each gene are classified as major promoters. Promoters active at lower levels are classified as minor promoters.

promoterId geneId seqnames start strand internalPromoter promoterPosition txId A549.mean HepG2.mean A549.class HepG2.class
1 ENSG00000000938.13 chr1 27624062 - TRUE 4 ENST0000…. 0.000000 0.000000 NA NA
2 ENSG00000000938.13 chr1 27626240 - FALSE 3 ENST0000…. 0.000000 0.000000 Inactive Inactive
3 ENSG00000000938.13 chr1 27626569 - FALSE 2 ENST0000…. 0.000000 0.000000 Inactive Inactive
4 ENSG00000000938.13 chr1 27635185 - FALSE 1 ENST0000…. 0.000000 0.000000 Inactive Inactive
5 ENSG00000001460.18 chr1 24379823 - TRUE 7 ENST0000…. 4.721803 4.319706 NA NA
6 ENSG00000001460.18 chr1 24391679 - TRUE 6 ENST0000…. 4.207194 3.999170 NA NA

The metadata slot provides gene expression data for each replicate per condition, and also summarizes mean expression across conditions.

For cleaner downstream analysis, one can remove single-exon transcripts for which promoter activity is not quantified. result can be filtered as such:

Alternative promoter usage

We identify genes with similar expression levels across cell lines with alternate promoter usage using DEXSeq (Anders, Reyes, Huber 2012). While DEXSeq is originally intended for inferring differential exon usage in RNA-Seq data, DEXSeq can be similarly used with raw promoter counts as input to assess the statistical significance of alternative promoter usage across conditions. We follow the standard DEXSeq workflow.

DEXSeq returns dxr1, which provides the significance that a promoter is differentially used across conditions. The description of each column of dxr1 can be found in the metadata columns.

Users can sort this result by the minimum adjusted p-value for all promoters belonging to a particular gene. This helps to better identify candidate genes where alternative promoter usage is present.

groupID featureID exonBaseMean dispersion stat pvalue padj A549 HepG2 log2fold_HepG2_A549 minp
ENSG00000076864.19 136 82.2979298 0.0182020 0.3525764 0.5526583 0.9591782 14.0805235 14.8219471 0.1491657 0
ENSG00000076864.19 137 19.0571424 0.0359076 82.8439826 0.0000000 0.0000000 9.1482464 0.9717349 -6.4739649 0
ENSG00000076864.19 138 6.4056344 0.0246006 32.1268838 0.0000000 0.0000015 5.2346450 0.9718889 -4.8598138 0
ENSG00000076864.19 139 0.7281028 0.1703656 3.1924443 0.0739793 0.4008247 1.7528098 0.0338418 -11.3895996 0
ENSG00000076864.19 140 1.4595099 0.5778816 4.4308498 0.0352949 0.2628434 0.0290838 2.9995717 13.3772586 0
ENSG00000076864.19 141 17.3815949 0.0072068 153.1300077 0.0000000 0.0000000 0.8716588 10.2057501 7.1042522 0

Analysis and visualization of alternative promoter usage

Here we offer several visualizations of the data returned by the workflow above.

Alternative Promoter Usage

To visualize genes with alternative promoter usage across conditions, we call plotPromoters on the summarizedExperiment object result returned by proActiv. Here, we demonstrate plotPromoters by visualizing promoters of RAP1GAP (ENSG00000076864.19). RAP1GAP is the most significant gene identified in dxr1 as a candidate for alternative promoter usage across cell lines A549 and HepG2. plotPromoters takes in result and gene, a gene of interest.

In order to build and plot a transcript model for the gene of interest, users may supply either a transcript database (txdb) or a list of Genomic Ranges giving the ranges of exons by transcripts to be plotted (ranges). If users choose to use a TxDb as input, we recommend that the TxDb used should be the same as the one used to prepare promoter annotations, as annotations from different sources may differ slightly. To keep the run-time of this vignette short, we use a TxDb generated from GENCODE v34 GTF subsetted to RAP1GAP.

The same plot can be generated with a list of Genomic Ranges giving the exons by transcripts of RAP1GAP:

Users can adjust the width of the promoter ‘blocks’ and ‘arrows’ in the plot with the numeric arguments blk.width and arrow.width respectively. blk.width defaults to 500 (bases), while arrow.width is internally calculated based on the range of the gene. Other parameters controlling the fill and border colour and size of labels are listed in code documentation.

From the plot, it is clear that alternative promoter usage regulates the expression of RAP1GAP across the cell lines A549 and HepG2.

Promoter category proportion

Here, we visualize the categorization of annotated promoters in the two cell lines. The proportions between the categories are similar across the two cell lines, with majority of the promoters being inactive.

Major/minor promoters by position

Analysis of major:minor promoter proportions against promoter position. The analysis is restricted to multi-promoter genes with at least one active promoter. Below, we generate the plot for cell line HepG2. In general, the major:minor promoter proportion decreases with increasing promoter position.

Major promoter activity and gene expression

Comparison of major promoter activity and gene expression, calculated by summing over all promoters. Single promoter genes lie on the diagonal. Multi-promoter genes lie to the right of the diagonal. Below, we generate the plot for cell line HepG2. This plot suggests that a single major promoter does not often fully explain gene expression, with minor promoters also contributing to gene expression.

t-SNE

We generate a t-SNE plot with all active promoters. Expectedly, replicates from each cell line cluster together.

Getting help

Questions and issues can be raised at the Bioconductor support site: https://support.bioconductor.org. Ensure your posts are tagged with proActiv.

Alternatively, issues can be raised at the proActiv Github repository: https://github.com/GoekeLab/proActiv.

Citing proActiv

If you use proActiv, please cite:

Demircioğlu, Deniz, et al. “A Pan-cancer Transcriptome Analysis Reveals Pervasive Regulation through Alternative Promoters.” Cell 178.6 (2019): 1465-1477.

Session information

#> R version 4.0.3 (2020-10-10)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 18.04.5 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.12-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.12-bioc/R/lib/libRlapack.so
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_US.UTF-8        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    parallel  stats     graphics  grDevices utils     datasets 
#> [8] methods   base     
#> 
#> other attached packages:
#>  [1] Rtsne_0.15                  ggplot2_3.3.2              
#>  [3] GenomicFeatures_1.42.0      DEXSeq_1.36.0              
#>  [5] RColorBrewer_1.1-2          AnnotationDbi_1.52.0       
#>  [7] DESeq2_1.30.0               SummarizedExperiment_1.20.0
#>  [9] GenomicRanges_1.42.0        GenomeInfoDb_1.26.0        
#> [11] IRanges_2.24.0              S4Vectors_0.28.0           
#> [13] MatrixGenerics_1.2.0        matrixStats_0.57.0         
#> [15] Biobase_2.50.0              BiocGenerics_0.36.0        
#> [17] BiocParallel_1.24.0         proActiv_1.0.0             
#> 
#> loaded via a namespace (and not attached):
#>   [1] colorspace_1.4-1         hwriter_1.3.2            ellipsis_0.3.1          
#>   [4] biovizBase_1.38.0        htmlTable_2.1.0          XVector_0.30.0          
#>   [7] base64enc_0.1-3          dichromat_2.0-0          rstudioapi_0.11         
#>  [10] farver_2.0.3             bit64_4.0.5              xml2_1.3.2              
#>  [13] splines_4.0.3            geneplotter_1.68.0       knitr_1.30              
#>  [16] Formula_1.2-4            Rsamtools_2.6.0          annotate_1.68.0         
#>  [19] cluster_2.1.0            dbplyr_1.4.4             png_0.1-7               
#>  [22] compiler_4.0.3           httr_1.4.2               backports_1.1.10        
#>  [25] assertthat_0.2.1         Matrix_1.2-18            lazyeval_0.2.2          
#>  [28] htmltools_0.5.0          prettyunits_1.1.1        tools_4.0.3             
#>  [31] gtable_0.3.0             glue_1.4.2               GenomeInfoDbData_1.2.4  
#>  [34] dplyr_1.0.2              rappdirs_0.3.1           Rcpp_1.0.5              
#>  [37] vctrs_0.3.4              Biostrings_2.58.0        rtracklayer_1.50.0      
#>  [40] xfun_0.18                stringr_1.4.0            lifecycle_0.2.0         
#>  [43] ensembldb_2.14.0         statmod_1.4.35           XML_3.99-0.5            
#>  [46] zlibbioc_1.36.0          scales_1.1.1             BSgenome_1.58.0         
#>  [49] VariantAnnotation_1.36.0 hms_0.5.3                ProtGenerics_1.22.0     
#>  [52] AnnotationFilter_1.14.0  yaml_2.2.1               curl_4.3                
#>  [55] memoise_1.1.0            gridExtra_2.3            biomaRt_2.46.0          
#>  [58] rpart_4.1-15             latticeExtra_0.6-29      stringi_1.5.3           
#>  [61] RSQLite_2.2.1            highr_0.8                genefilter_1.72.0       
#>  [64] checkmate_2.0.0          rlang_0.4.8              pkgconfig_2.0.3         
#>  [67] bitops_1.0-6             evaluate_0.14            lattice_0.20-41         
#>  [70] purrr_0.3.4              labeling_0.4.2           GenomicAlignments_1.26.0
#>  [73] htmlwidgets_1.5.2        bit_4.0.4                tidyselect_1.1.0        
#>  [76] magrittr_1.5             R6_2.4.1                 generics_0.0.2          
#>  [79] Hmisc_4.4-1              DelayedArray_0.16.0      DBI_1.1.0               
#>  [82] withr_2.3.0              pillar_1.4.6             foreign_0.8-80          
#>  [85] survival_3.2-7           RCurl_1.98-1.2           nnet_7.3-14             
#>  [88] tibble_3.0.4             crayon_1.3.4             BiocFileCache_1.14.0    
#>  [91] rmarkdown_2.5            jpeg_0.1-8.1             progress_1.2.2          
#>  [94] locfit_1.5-9.4           grid_4.0.3               data.table_1.13.2       
#>  [97] blob_1.2.1               digest_0.6.27            xtable_1.8-4            
#> [100] openssl_1.4.3            munsell_0.5.0            Gviz_1.34.0             
#> [103] askpass_1.1