Among the various post-transcriptional RNA modifications, 2’-O methylations are commonly found in rRNA and tRNA. They promote the endo conformation of the ribose and confere resistance to alkaline degradation by preventing a nucleophilic attack on the 3’-phosphate especially in flexible RNA, which is fascilitated by high pH conditions. This property can be queried using a method called RiboMethSeq (Birkedal et al. 2015) for which RNA is treated in alkaline conditions and RNA fragments are used to prepare a sequencing library (Marchand et al. 2017).
At position containing a 2’-O methylations, read ends are less frequent, which is used to detect and score the 2’-O methylations.
The ModRiboMethSeq
class uses the the ProtectedEndSequenceData
class to
store and aggregate data along the transcripts. The calculated scores follow the
nomenclature of (Birkedal et al. 2015; Galvanin et al. 2019) with the names
scoreRMS
(default), scoreA
, scoreB
and scoreMean
.
## snapshotDate(): 2021-10-18
library(rtracklayer)
library(GenomicRanges)
library(RNAmodR.RiboMethSeq)
library(RNAmodR.Data)
The example workflow is limited to two 2’-O methylated position on 5.8S rRNA,
since the size of the raw data is limited. For annotation data either a gff file
or a TxDb
object and for sequence data a fasta file or a BSgenome
object can
be used. The data is provided as bam files.
annotation <- GFF3File(RNAmodR.Data.example.RMS.gff3())
sequences <- RNAmodR.Data.example.RMS.fasta()
files <- list("Sample1" = c(treated = RNAmodR.Data.example.RMS.1()),
"Sample2" = c(treated = RNAmodR.Data.example.RMS.2()))
The analysis is triggered by the construction of a ModSetRiboMethSeq
object.
Internally parallelization is used via the BiocParallel
package, which would
allow optimization depending on number/size of input files (number of samples,
number of replicates, number of transcripts, etc).
msrms <- ModSetRiboMethSeq(files, annotation = annotation, sequences = sequences)
## Import genomic features from the file as a GRanges object ... OK
## Prepare the 'metadata' data frame ... OK
## Make the TxDb object ... OK
msrms
## ModSetRiboMethSeq of length 2
## names(2): Sample1 Sample2
## | Modification type(s): Am / Cm / Gm / Um
## Sample1 Sample2
## | Modifications found: no yes (1)
## | Settings:
## minCoverage minReplicate find.mod maxLength minSignal flankingRegion
## <integer> <integer> <logical> <integer> <integer> <integer>
## Sample1 10 1 TRUE 50 10 6
## Sample2 10 1 TRUE 50 10 6
## minScoreA minScoreB minScoreRMS minScoreMean flankingRegionMean
## <numeric> <numeric> <numeric> <numeric> <integer>
## Sample1 0.6 3.6 0.75 0.75 2
## Sample2 0.6 3.6 0.75 0.75 2
## weights
## <NumericList>
## Sample1 0.9,1.0,0.0,...
## Sample2 0.9,1.0,0.0,...
## scoreOperator
## <character>
## Sample1 &
## Sample2 &
To compare samples, we need to know, which positions should be part of the comparison. This can either be done by aggregating the detect over all samples and use the union or intersect or by using publish data. We want to assemble a GRanges object from the latter by utilising the infomation from the snoRNAdb (Lestrade and Weber 2006).
In this specific example only information for the 5.8S RNA is used, since the
example data would be to big otherwise. The information regarding the parent and
seqname must match the information used as the annotation data. Check that it
matches the output of ranges()
on a SequenceData
, Modifier
oder
ModifierSet
object.
table <- read.csv2(RNAmodR.Data.snoRNAdb(), stringsAsFactors = FALSE)
## see ?RNAmodR.Data and browseVignettes('RNAmodR.Data') for documentation
## loading from cache
table <- table[table$hgnc_id == "53533",] # Subset to RNA5.8S
# keep only the current coordinates
table <- table[,1L:7L]
snoRNAdb <- GRanges(seqnames = "chr1",
ranges = IRanges(start = table$position,
width = 1),
strand = "+",
type = "RNAMOD",
mod = table$modification,
Parent = "1", #this is the transcript id
Activity = IRanges::CharacterList(strsplit(table$guide,",")))
coord <- split(snoRNAdb,snoRNAdb$Parent)
In addition to the coordinates of published, we also want to include more
meaningful names for the transcripts. For this we provide a data.frame
with
two columns, tx_id
and name
. All values in the first column have to match
transcript IDs.
ranges(msrms)
## GRangesList object of length 1:
## $`1`
## GRanges object with 1 range and 3 metadata columns:
## seqnames ranges strand | exon_id exon_name exon_rank
## <Rle> <IRanges> <Rle> | <integer> <character> <integer>
## [1] chr1 1-157 + | 1 NR_003285.2 1
## -------
## seqinfo: 1 sequence from an unspecified genome; no seqlengths
alias <- data.frame(tx_id = "1", name = "5.8S rRNA", stringsAsFactors = FALSE)
plotCompareByCoord(msrms[c(2L,1L)], coord, alias = alias)
Results can also be compared on a sequence level, by selecting specific coordinates to compare.
singleCoord <- coord[[1L]][1L,]
plotDataByCoord(msrms, singleCoord)
By default only the RiboMethSeq score and the ScoreMean are shown. The raw sequence data can be inspected as well
singleCoord <- coord[[1L]][1L,]
plotDataByCoord(msrms, singleCoord, showSequenceData = TRUE)
To access the performance of the method in combination with samples used, use
the plotROC
function.
plotROC(msrms,coord)
The example given here should be regarded as a proof of concept. Based on the results, minimal scores for calling modified positions can be adjusted to the individual requirements.
settings(msrms) <- list(minScoreMean = 0.7)
msrms
## ModSetRiboMethSeq of length 2
## names(2): Sample1 Sample2
## | Modification type(s): Am / Cm / Gm / Um
## Sample1 Sample2
## | Modifications found: no yes (1)
## | Settings:
## minCoverage minReplicate find.mod maxLength minSignal flankingRegion
## <integer> <integer> <logical> <integer> <integer> <integer>
## Sample1 10 1 TRUE 50 10 6
## Sample2 10 1 TRUE 50 10 6
## minScoreA minScoreB minScoreRMS minScoreMean flankingRegionMean
## <numeric> <numeric> <numeric> <numeric> <integer>
## Sample1 0.6 3.6 0.75 0.7 2
## Sample2 0.6 3.6 0.75 0.7 2
## weights
## <NumericList>
## Sample1 0.9,1.0,0.0,...
## Sample2 0.9,1.0,0.0,...
## scoreOperator
## <character>
## Sample1 &
## Sample2 &
## Warning: Settings were changed after data aggregation or modification search.
## Rerun with modify(x,force = TRUE) to update with current settings.
As the warning suggested, after modifying the settings the results should be
updated by running modify(x,force = TRUE)
.
msrms2 <- modify(msrms,force = TRUE)
sessionInfo()
## R version 4.1.1 (2021-08-10)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.3 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.14-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.14-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] Rsamtools_2.10.0 RNAmodR.Data_1.7.0
## [3] ExperimentHubData_1.20.0 AnnotationHubData_1.24.0
## [5] futile.logger_1.4.3 ExperimentHub_2.2.0
## [7] AnnotationHub_3.2.0 BiocFileCache_2.2.0
## [9] dbplyr_2.1.1 RNAmodR.RiboMethSeq_1.8.0
## [11] RNAmodR_1.8.0 Modstrings_1.10.0
## [13] Biostrings_2.62.0 XVector_0.34.0
## [15] rtracklayer_1.54.0 GenomicRanges_1.46.0
## [17] GenomeInfoDb_1.30.0 IRanges_2.28.0
## [19] S4Vectors_0.32.0 BiocGenerics_0.40.0
## [21] BiocStyle_2.22.0
##
## loaded via a namespace (and not attached):
## [1] backports_1.2.1 Hmisc_4.6-0
## [3] plyr_1.8.6 lazyeval_0.2.2
## [5] splines_4.1.1 BiocParallel_1.28.0
## [7] ggplot2_3.3.5 digest_0.6.28
## [9] ensembldb_2.18.0 htmltools_0.5.2
## [11] magick_2.7.3 fansi_0.5.0
## [13] magrittr_2.0.1 checkmate_2.0.0
## [15] memoise_2.0.0 BSgenome_1.62.0
## [17] cluster_2.1.2 ROCR_1.0-11
## [19] matrixStats_0.61.0 prettyunits_1.1.1
## [21] jpeg_0.1-9 colorspace_2.0-2
## [23] blob_1.2.2 rappdirs_0.3.3
## [25] xfun_0.27 dplyr_1.0.7
## [27] crayon_1.4.1 RCurl_1.98-1.5
## [29] jsonlite_1.7.2 graph_1.72.0
## [31] survival_3.2-13 VariantAnnotation_1.40.0
## [33] glue_1.4.2 gtable_0.3.0
## [35] zlibbioc_1.40.0 DelayedArray_0.20.0
## [37] scales_1.1.1 futile.options_1.0.1
## [39] DBI_1.1.1 Rcpp_1.0.7
## [41] xtable_1.8-4 progress_1.2.2
## [43] htmlTable_2.3.0 foreign_0.8-81
## [45] bit_4.0.4 OrganismDbi_1.36.0
## [47] Formula_1.2-4 AnnotationForge_1.36.0
## [49] getopt_1.20.3 htmlwidgets_1.5.4
## [51] httr_1.4.2 RColorBrewer_1.1-2
## [53] ellipsis_0.3.2 farver_2.1.0
## [55] pkgconfig_2.0.3 XML_3.99-0.8
## [57] Gviz_1.38.0 nnet_7.3-16
## [59] sass_0.4.0 utf8_1.2.2
## [61] labeling_0.4.2 tidyselect_1.1.1
## [63] rlang_0.4.12 reshape2_1.4.4
## [65] later_1.3.0 AnnotationDbi_1.56.0
## [67] biocViews_1.62.0 munsell_0.5.0
## [69] BiocVersion_3.14.0 tools_4.1.1
## [71] cachem_1.0.6 generics_0.1.1
## [73] RSQLite_2.2.8 evaluate_0.14
## [75] stringr_1.4.0 fastmap_1.1.0
## [77] yaml_2.2.1 knitr_1.36
## [79] bit64_4.0.5 purrr_0.3.4
## [81] KEGGREST_1.34.0 AnnotationFilter_1.18.0
## [83] RBGL_1.70.0 mime_0.12
## [85] formatR_1.11 xml2_1.3.2
## [87] biomaRt_2.50.0 compiler_4.1.1
## [89] rstudioapi_0.13 filelock_1.0.2
## [91] curl_4.3.2 png_0.1-7
## [93] interactiveDisplayBase_1.32.0 tibble_3.1.5
## [95] bslib_0.3.1 stringi_1.7.5
## [97] highr_0.9 GenomicFeatures_1.46.0
## [99] lattice_0.20-45 ProtGenerics_1.26.0
## [101] Matrix_1.3-4 vctrs_0.3.8
## [103] stringdist_0.9.8 BiocCheck_1.30.0
## [105] pillar_1.6.4 lifecycle_1.0.1
## [107] optparse_1.7.1 RUnit_0.4.32
## [109] BiocManager_1.30.16 jquerylib_0.1.4
## [111] data.table_1.14.2 bitops_1.0-7
## [113] httpuv_1.6.3 colorRamps_2.3
## [115] R6_2.5.1 BiocIO_1.4.0
## [117] latticeExtra_0.6-29 bookdown_0.24
## [119] promises_1.2.0.1 gridExtra_2.3
## [121] codetools_0.2-18 lambda.r_1.2.4
## [123] dichromat_2.0-0 assertthat_0.2.1
## [125] SummarizedExperiment_1.24.0 rjson_0.2.20
## [127] withr_2.4.2 GenomicAlignments_1.30.0
## [129] GenomeInfoDbData_1.2.7 parallel_4.1.1
## [131] hms_1.1.1 grid_4.1.1
## [133] rpart_4.1-15 rmarkdown_2.11
## [135] MatrixGenerics_1.6.0 biovizBase_1.42.0
## [137] Biobase_2.54.0 shiny_1.7.1
## [139] base64enc_0.1-3 restfulr_0.0.13
Birkedal, Ulf, Mikkel Christensen-Dalsgaard, Nicolai Krogh, Radhakrishnan Sabarinathan, Jan Gorodkin, and Henrik Nielsen. 2015. “Profiling of Ribose Methylations in Rna by High-Throughput Sequencing.” Angewandte Chemie (International Ed. In English) 54 (2): 451–55. https://doi.org/10.1002/anie.201408362.
Galvanin, Adeline, Lilia Ayadi, Mark Helm, Yuri Motorin, and Virginie Marchand. 2019. “Mapping and Quantification of tRNA 2’-O-Methylation by Ribomethseq.” Edited by Narendra Wajapeyee and Romi Gupta, 273–95. https://doi.org/10.1007/978-1-4939-8808-2_21.
Lestrade, Laurent, and Michel J. Weber. 2006. “snoRNA-LBME-db, a comprehensive database of human H/ACA and C/D box snoRNAs.” Nucleic Acids Research 34 (January): D158–D162. https://doi.org/10.1093/nar/gkj002.
Marchand, Virginie, Lilia Ayadi, Aseel El Hajj, Florence Blanloeil-Oillo, Mark Helm, and Yuri Motorin. 2017. “High-Throughput Mapping of 2’-O-Me Residues in Rna Using Next-Generation Sequencing (Illumina Ribomethseq Protocol).” Methods in Molecular Biology (Clifton, N.J.) 1562: 171–87. https://doi.org/10.1007/978-1-4939-6807-7_12.