primirTSS

1 Introduction

Identifying human miRNA transcriptional start sites (TSSs) plays a significant role in understanding the transcriptional regulation of miRNA. However, due to the quick capping of pri-miRNA and many miRNA genes may lie in the introns or even exons of other genes, it is difficult to detect miRNA TSSs. miRNA TSSs are cell-specific. And miRNA TSSs are cell-specific, which implies the same miRNA in different cell-lines may start transcribing at different TSSs.

High throughput sequencing, like ChIP-seq, has gradually become an essential and versatile approach for us to identify and understand genomes and their transcriptional processes. By integrating H3k4me4 and Pol II data, parting of false positive counts after scoring can be filtered out. Besides, DNase I hypersensitive sites(DHS) also imply TSSs, where miRNAs will be accessible and functionally related to transcription activities. And additionally, the expression profile of miRNA and genes in certain cell-line will be considered as well to improve fidelity. By employing all these different kinds of data, here we have developed the primirTSS package to assist users to identify miRNA TSSs in human and to provide them with related information about where miRNA genes lie in the genome, with both command-line and graphical interfaces.

2 Find the best putative TSS

Installation

1 primirTSS

Install the latest release of R, then get primirTSS by starting R and entering the commands:

Or install the development version of the package using the same command, but with GitHub account name.

2 Install Java SE Development Kit(JDK)

As Java development environment is indispensable for the primary function in our package, it is necessary for users to install Java SE Development Kit 10 before using primirTSS.

3 Load the package into R session

3 Getting Started

Step 1: Process of H3K4me3 and Pol II data

H3K4me3 and Pol II data are key points for accurate prediction with our method. If one of these two peak data is input, before executing the main function find_TSS, the function peak_merge should be used to merge adjacent peaks whose distance between each other is less than n base pairs and return the merged peaks as an output.


If both of H3K4me3 and Pol II data, after separately merging these two kinds of evidence first, peak_join should be employed to integrate H3K4me3 and Pol II peaks and return the result as bed_merged parameter for the main function find_tss.

Step 2: Predict most possible TSS for miRNA



There will be different circumstances where not all miRNA expression profiles, DHS data, protein-coding gene(‘gene’) expression profiles are available:


Circumstance 1: no miRNA expression data; then suggest DHS check and protein-coding gene check.

no_ownmiRNA <- find_tss(peak, ignore_DHS_check = FALSE,
                        DHS = DHS, allmirdhs_byforce = FALSE,
                        expressed_gene = "all",
                        allmirgene_byforce = FALSE,
                        seek_tf = FALSE)


Circumstance 2: miRNA expression data provided; then no need for DHS check but protein-coding gene check.


Step 3: Searching for TFs

Step4: Analysis of results

Here is a demo of predicting TSS for hsa-mir-5697, ignore DHS check.


PART1, $tss_df:

The first part of the result returns details of predicted TSSs, composed of seven columns: mir_name, chrom, stem_loop_p1, stem_loop_p2, strand mir_context, tss_type gene and predicted_tss:

Entry Implication
mir_name Name of miRNA.
chrom Chromosome.
stem_loop_p1 The start site of a stem-loop.
stem_loop_p2 The end site of a stem-loop.
strand Polynucleotide strands. (+/-)
mir_context 2 types of relative position relationship between stem-loop and protein-coding gene. (intra/inter)
tss_type 4 types of predicted TSSs. See the section below TSS types for details.(host_TSS/intra_TSS/overlap_inter_TSS/inter_TSS)
gene Ensembl gene ID.
predicted_tss Predicted transcription start sites(TSSs).
pri_tss_distance The distance between a predicted TSS and the start site of the stem-loop.

TSSs are cataloged into 4 types as below:

(See Xu HUA et al 2016 for more details)


PART2, $log:

The second part of the result returns 4 logs created during the process of prediction:



4 Plot the prediction of TSS for miRNA

plot_primiRNA(expressed_mir, bed_merged,
              flanking_num = 1000, threshold = 0.7,
              ignore_DHS_check = TRUE,
              DHS, allmirdhs_byforce = TRUE,
              expressed_gene = "all",
              allmirgene_byforce = TRUE)


plot_tss    Figure S1. Visualized result for miRNA TSSs by Plot pri-miRNA TSS()

As Figure S1 shows, the picture contains information of the pri-miRNA’s coordinate, the closest gene to the miRNA, the eponine score of the miRNA’s candidate TSS and the conservation score of the miRNA’s candidate TSS. There are six tracks plotted in return:

Entry Implication
Chromosome Position of miRNA on the chromosome.
hg19 Reference genome coordinate in hg19.
pri-miRNA: Position of pri-miRNA.
Ensemble genes Position of related protein-coding gene.
Eponine score Score of best putative TSS by Eponine method.
Conservation score Conservation score of TSS.                         



5 Graphical web interface for prediction

TAG1: Find the best putative TSS

shiny_tss  Figure S2. Graphical web interface of Find pri-miRNA TSS()

As Figure S2 shows, if we want to use the shiny app, we should select the appropriate options or upload the appropriate files. Histone peaks, Pol II peaks and DHS files are comma-separated values (CSV) files, whose first line is chrom,start,end. Every line of miRNA expression profiles has only one miRNA name which start with hsa-mir, such as hsa-mir-5697. Every line of gene expression profiles has only one gene name which derived from Ensembl, such as ENSG00000261657. All of miRNA expression profiles and gene expression profiles do not have column names. If we have prepared, we can push the Start the analysis button to start finding the TSSs. The process of analysis may need to take a few minutes, and a process bar will appear in right corner.

As a result, we will view first six rows of the result. The first five columns are about miRNA information, next five columns are about TSS information. The column of gene denotes the gene whose TSS is closest to the miRNA TSS. The column of pri_tss_distance denotes the distance between miRNA TSS and stem-loop. If users choose to get TFs simultaneously, they will have an additional column, tf, which stores related TFs.


TAG2: Plot pri-miRNA TSS

shiny_plot  Figure S3. Graphical web interface of Plot pri-miRNA TSS()

As Figure S4 shows, if we select the appropriate options and upload the appropriate files, we can have a picture of miRNA TSSs.


Session info

Here is the output of sessionInfo() on the system on which this document was compiled:

sessionInfo()
#> R version 3.6.1 (2019-07-05)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 18.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.10-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.10-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] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] primirTSS_1.4.0
#> 
#> loaded via a namespace (and not attached):
#>  [1] Biobase_2.46.0                    httr_1.4.1                       
#>  [3] tidyr_1.0.0                       bit64_0.9-7                      
#>  [5] AnnotationHub_2.18.0              R.utils_2.9.0                    
#>  [7] shiny_1.4.0                       assertthat_0.2.1                 
#>  [9] interactiveDisplayBase_1.24.0     BiocManager_1.30.9               
#> [11] stats4_3.6.1                      BiocFileCache_1.10.0             
#> [13] blob_1.2.0                        BSgenome_1.54.0                  
#> [15] GenomeInfoDbData_1.2.2            Rsamtools_2.2.0                  
#> [17] yaml_2.2.0                        BiocVersion_3.10.1               
#> [19] pillar_1.4.2                      RSQLite_2.1.2                    
#> [21] backports_1.1.5                   lattice_0.20-38                  
#> [23] glue_1.3.1                        digest_0.6.22                    
#> [25] GenomicRanges_1.38.0              promises_1.1.0                   
#> [27] XVector_0.26.0                    R.oo_1.22.0                      
#> [29] htmltools_0.4.0                   httpuv_1.5.2                     
#> [31] Matrix_1.2-17                     XML_3.98-1.20                    
#> [33] pkgconfig_2.0.3                   zlibbioc_1.32.0                  
#> [35] purrr_0.3.3                       xtable_1.8-4                     
#> [37] JASPAR2018_1.1.1                  later_1.0.0                      
#> [39] BiocParallel_1.20.0               tibble_2.1.3                     
#> [41] IRanges_2.20.0                    ellipsis_0.3.0                   
#> [43] SummarizedExperiment_1.16.0       BiocGenerics_0.32.0              
#> [45] cli_1.1.0                         magrittr_1.5                     
#> [47] crayon_1.3.4                      mime_0.7                         
#> [49] memoise_1.1.0                     evaluate_0.14                    
#> [51] R.methodsS3_1.7.1                 fansi_0.4.0                      
#> [53] tools_3.6.1                       lifecycle_0.1.0                  
#> [55] matrixStats_0.55.0                stringr_1.4.0                    
#> [57] S4Vectors_0.24.0                  DelayedArray_0.12.0              
#> [59] AnnotationDbi_1.48.0              Biostrings_2.54.0                
#> [61] compiler_3.6.1                    GenomeInfoDb_1.22.0              
#> [63] rlang_0.4.1                       grid_3.6.1                       
#> [65] RCurl_1.95-4.12                   rappdirs_0.3.1                   
#> [67] bitops_1.0-6                      rmarkdown_1.16                   
#> [69] GenomicScores_1.10.0              phastCons100way.UCSC.hg38_3.7.1  
#> [71] DBI_1.0.0                         curl_4.2                         
#> [73] R6_2.4.0                          GenomicAlignments_1.22.0         
#> [75] knitr_1.25                        dplyr_0.8.3                      
#> [77] rtracklayer_1.46.0                utf8_1.1.4                       
#> [79] fastmap_1.0.1                     bit_1.1-14                       
#> [81] zeallot_0.1.0                     stringi_1.4.3                    
#> [83] parallel_3.6.1                    Rcpp_1.0.2                       
#> [85] vctrs_0.2.0                       dbplyr_1.4.2                     
#> [87] tidyselect_0.2.5                  xfun_0.10                        
#> [89] BSgenome.Hsapiens.UCSC.hg38_1.4.1