Contents

1 Introduction

3’ ends of transcripts have generally been poorly annotated. With the advent of deep sequencing, many methods have been developed to identify 3’ ends. The majority of these methods use an oligo-dT primer, which can bind to internal adenine-rich sequences, and lead to artifactual identification of polyadenylation sites. Heuristic filtering methods rely on a certain number of adenines in the genomic sequence downstream of a putative polyadenylation site to remove internal priming events. We introduce a package to provide a robust method to classify putative polyadenylation sites. cleanUpdTSeq uses a naïve Bayes classifier, implemented through the e1071 [1], and sequence features surrounding the putative polyadenylation sites for classification.

The package includes a training dataset constructed from 6 different Zebrafish sequencing dataset, and functions for fetching surrounding sequences using BSgenome [2], building feature vectors and classifying whether the putative polyadenylations site is a true polyadenylation site or a mis-primed false site.

2 Citation

If you use cleanUpdTSeq, please cite:

Sheppard, S., Lawson, N.D. and Zhu, L.J., 2013. Accurate identification of polyadenylation sites from 3’ end deep sequencing using a naive Bayes classifier. Bioinformatics, 29(20), pp.2564-2571 and 2014, 30(4), pp.596, https://doi.org/10.1093/bioinformatics/btt714

3 step-by-step guide

Here is a step-by-step guide on how to use the cleanUpdTSeq package to classify a list of putative polyadenylation sites

3.1 Step 1. Load the cleanUpdTSeq package, and then use the function BED6WithSeq2GRangesSeq to convert the test dataset in a extended BED6 file to a GRanges object with or without sequence information.

suppressPackageStartupMessages(library(cleanUpdTSeq))
testFile <- system.file("extdata", "test.bed", 
                        package = "cleanUpdTSeq")
peaks <- BED6WithSeq2GRangesSeq(file = testFile, 
                               skip = 1L, withSeq = FALSE)

If test dataset contains sequence information already, then use the following command instead.

peaks <- BED6WithSeq2GRangesSeq(file = testFile, 
                                skip = 1L, withSeq = TRUE)

To work with your own test dataset, please set testFile to the file path that contains the putative pA site information.

Here is how the test dataset look like.

head(read.delim(testFile, header = TRUE, skip = 0))
##     chr    start     stop        name score strand
## 1 chr10  2965327  2965328 6hpas-22249     1      -
## 2 chr10  2966558  2966559 6hpas-22250     1      -
## 3 chr10  2974251  2974252 6hpas-22251     2      -
## 4 chr10  2978441  2978442 6hpas-22252     1      -
## 5 chr11 16772291 16772292 6hpas-33204     1      -
## 6 chr11 16777848 16777849 6hpas-33205     1      -
##                                   upstream                     downstream
## 1 TCTTCATCATGGTCATCTCGCACCAGAGAGTGTGCCAGGG CAGGAAGTTTTACCTGTCTGTCATTATCGT
## 2 ACCCTGGTGAGGGTATAGAGCTGGTCCAGTGTGCCACGGC AAAGAGGAAAACAGCATTGTTCCTCCTGGA
## 3 TGATTTGTTTGTAACTGATTTTATCTTTTAATAAAAAAGA AAAAAGAAAGTCAAGCCAAGAGGCAAATAC
## 4 GGAGCGCGACCGCATCAACAAAATCTTGCAGGATTATCAG AAGAAAAAGATGGTGAGTTATTATCATTCA
## 5 AGGGAAATAAATACAAAAGAATAAAAATATGATTCATTGT AAGAAAAACACTTTAGCTACAAAAGTCCTT
## 6 ATTTAGTTGGGTATTATTTCAAATAAAGAGAGAGAGAGAC ACAAAAACTACATCAAATTTGAGGACAAAA

3.2 Step2. Build feature vectors for the classifier using the function buildFeatureVector.

The zebrafish genome from BSgenome is used in this example for obtaining flanking sequences. For a list of other genomes available through BSgenome, please refer to the BSgenome package documentation [2].

suppressPackageStartupMessages(library(BSgenome.Drerio.UCSC.danRer7))
testSet.NaiveBayes <- buildFeatureVector(peaks, 
                                         genome = Drerio,
                                         upstream = 40L, 
                                         downstream = 30L, 
                                         wordSize = 6L,
                                         alphabet = c("ACGT"),
                                         sampleType = "unknown", 
                                         replaceNAdistance = 30, 
                                         method = "NaiveBayes",
                                         fetchSeq = TRUE,
                                         return_sequences = TRUE)

If sequences are present in the test dataset already, then set fetchSeq = FALSE.

3.3 Step 3. Load the training dataset and classify putative polyadenylation sites.

The output file is a tab-delimited file containing the name of the putative polyadenylation sites, the probability that the putative polyadenylation site is false/oligodT internally primed, the probability the putative polyadenylation site is true, the predicted class based on the assignment cutoff and the sequence surrounding the putative polyadenylation site.

data(data.NaiveBayes)
if(interactive()){
   out <- predictTestSet(data.NaiveBayes$Negative,
                         data.NaiveBayes$Positive, 
                         testSet.NaiveBayes = testSet.NaiveBayes, 
                         outputFile = file.path(tempdir(), 
                                          "test-predNaiveBayes.tsv"), 
                        assignmentCutoff = 0.5)
}

Alternatively, instead of passing in a positive and a negative training dataset, set the parameter classifier to a pre-built PASclassifier to speed up the process. To built a PASclassifier using the training dataset, please use function buildClassifier. A PASclassifier named as classifier is included in the package which is generated using the included training dataset with upstream = 40, downstream = 30, and wordSize = 6. Please note that in order to use this pre-built classier, you need to build feature vector using buildFeatureVector from your test dataset with the same setting, i.e., upstream = 40, downstream = 30, and wordSize = 6.

data(classifier)
testResults <- predictTestSet(testSet.NaiveBayes = testSet.NaiveBayes,
                              classifier = classifier,
                              outputFile = NULL, 
                              assignmentCutoff = 0.5,
                              return_sequences = TRUE)
head(testResults)
##     peak_name prob_fake_pA prob_true_pA pred_class
## 1 6hpas-22249   0.99778351 2.216486e-03          0
## 2 6hpas-22250   1.00000000 6.699365e-10          0
## 3 6hpas-22251   0.99444054 5.559459e-03          0
## 4 6hpas-22252   0.99999995 4.729351e-08          0
## 5 6hpas-33204   0.02810869 9.718913e-01          1
## 6 6hpas-33205   0.99997144 2.855673e-05          0
##                               upstream_seq                 downstream_seq
## 1 TCTTCATCATGGTCATCTCGCACCAGAGAGTGTGCCAGGG CAGGAAGTTTTACCTGTCTGTCATTATCGT
## 2 ACCCTGGTGAGGGTATAGAGCTGGTCCAGTGTGCCACGGC AAAGAGGAAAACAGCATTGTTCCTCCTGGA
## 3 TGATTTGTTTGTAACTGATTTTATCTTTTAATAAAAAAGA AAAAAGAAAGTCAAGCCAAGAGGCAAATAC
## 4 GGAGCGCGACCGCATCAACAAAATCTTGCAGGATTATCAG AAGAAAAAGATGGTGAGTTATTATCATTCA
## 5 AGGGAAATAAATACAAAAGAATAAAAATATGATTCATTGT AAGAAAAACACTTTAGCTACAAAAGTCCTT
## 6 ATTTAGTTGGGTATTATTTCAAATAAAGAGAGAGAGAGAC ACAAAAACTACATCAAATTTGAGGACAAAA

4 References

Appendix

  1. Meyer, D., et al., e1071: Misc Functions of the Department of Statistics (e1071), TU Wien. 2012.

  2. Pages, H., BSgenome: Infrastructure for Biostrings-based genome data packages.

  3. Sheppard, S., Lawson, N.D. and Zhu, L.J., 2013. Accurate identification of polyadenylation sites from 3’ end deep sequencing using a naive Bayes classifier. Bioinformatics, 29(20), pp.2564-2571.

A Session Info

sessionInfo()

R version 4.3.1 (2023-06-16) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 22.04.3 LTS

Matrix products: default BLAS: /home/biocbuild/bbs-3.18-bioc/R/lib/libRblas.so LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.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] cleanUpdTSeq_1.40.0 BSgenome.Drerio.UCSC.danRer7_1.4.0 [3] BSgenome_1.70.0 rtracklayer_1.62.0
[5] BiocIO_1.12.0 Biostrings_2.70.0
[7] XVector_0.42.0 GenomicRanges_1.54.0
[9] GenomeInfoDb_1.38.0 IRanges_2.36.0
[11] S4Vectors_0.40.0 BiocGenerics_0.48.0
[13] BiocStyle_2.30.0

loaded via a namespace (and not attached): [1] sass_0.4.7 class_7.3-22
[3] SparseArray_1.2.0 bitops_1.0-7
[5] stringi_1.7.12 lattice_0.22-5
[7] magrittr_2.0.3 digest_0.6.33
[9] evaluate_0.22 grid_4.3.1
[11] bookdown_0.36 seqinr_4.2-30
[13] fastmap_1.1.1 jsonlite_1.8.7
[15] Matrix_1.6-1.1 e1071_1.7-13
[17] restfulr_0.0.15 BiocManager_1.30.22
[19] XML_3.99-0.14 ade4_1.7-22
[21] codetools_0.2-19 jquerylib_0.1.4
[23] abind_1.4-5 cli_3.6.1
[25] rlang_1.1.1 crayon_1.5.2
[27] Biobase_2.62.0 cachem_1.0.8
[29] DelayedArray_0.28.0 yaml_2.3.7
[31] S4Arrays_1.2.0 tools_4.3.1
[33] parallel_4.3.1 BiocParallel_1.36.0
[35] GenomeInfoDbData_1.2.11 Rsamtools_2.18.0
[37] SummarizedExperiment_1.32.0 vctrs_0.6.4
[39] R6_2.5.1 lifecycle_1.0.3
[41] proxy_0.4-27 matrixStats_1.0.0
[43] stringr_1.5.0 zlibbioc_1.48.0
[45] MASS_7.3-60 bslib_0.5.1
[47] glue_1.6.2 Rcpp_1.0.11
[49] xfun_0.40 GenomicAlignments_1.38.0
[51] MatrixGenerics_1.14.0 knitr_1.44
[53] rjson_0.2.21 htmltools_0.5.6.1
[55] rmarkdown_2.25 compiler_4.3.1
[57] RCurl_1.98-1.12