GRanges
tRNAdbImport 1.24.0
The tRNAdb and mttRNAdb (Jühling et al. 2009) is a compilation of tRNA sequences and tRNA genes. It is a follow up version of the database of Sprinzl et al. (Sprinzl and Vassilenko 2005).
Using tRNAdbImport
the tRNAdb can be accessed as outlined on the website
http://trna.bioinf.uni-leipzig.de/ and the results
are returned as a GRanges
object.
The tRNAdb Server is currently not available. Some chunks of the code in this vignette are currently not avilable. See https://www.bioinf.uni-leipzig.de/services/webservices for more information.
GRanges
library(tRNAdbImport)
# accessing tRNAdb
# tRNA from yeast for Alanine and Phenylalanine
gr <- import.tRNAdb(organism = "Saccharomyces cerevisiae",
aminoacids = c("Phe","Ala"))
## Warning: tRNAdb Server seems to be not available.
# get a Phenylalanine tRNA from yeast
gr <- import.tRNAdb.id(tdbID = gr[gr$tRNA_type == "Phe",][1L]$tRNAdb_ID)
# find the same tRNA via blast
gr <- import.tRNAdb.blast(blastSeq = gr$tRNA_seq)
# accessing mtRNAdb
# get the mitochrondrial tRNA for Alanine in Bos taurus
gr <- import.mttRNAdb(organism = "Bos taurus",
aminoacids = "Ala")
## Warning: tRNAdb Server seems to be not available.
# get one mitochrondrial tRNA in Bos taurus.
gr <- import.mttRNAdb.id(mtdbID = gr[1L]$tRNAdb_ID)
# check that the result has the appropriate columns
istRNAdbGRanges(gr)
## Warning: Input GRanges object does not meet the requirements of the function. The following columns are expected:
## 'tRNA_length', 'tRNA_type', 'tRNA_anticodon', 'tRNA_seq', 'tRNA_str', 'tRNA_CCA.end', 'tRNAdb_ID', 'tRNAdb', 'tRNAdb_organism', 'tRNAdb_strain', 'tRNAdb_taxonomyID', 'tRNAdb_verified'.
## [1] FALSE
GRanges
from the RNA databaseThe tRNAdb offers two different sets of data, one containing DNA sequences and
one containing RNA sequences. Depending on the database selected, DNA
as
default, the GRanges will contain a DNAStringSet
or a ModRNAStringSet
as
the tRNA_seq
column. Because the RNA sequences can contain modified
nucleotides, the ModRNAStringSet
class is used instead of the RNAStringSet
class to store the sequences correctly with all information intact.
gr <- import.tRNAdb(organism = "Saccharomyces cerevisiae",
aminoacids = c("Phe","Ala"),
database = "RNA")
gr$tRNA_seq
The special characters in the sequence might no exactly match the ones shown on
the website, since they are sanitized internally to a unified dictionary defined
in the Modstrings
package. However, the type of modification encoded will
remain the same (See the Modstrings
package for more details).
The information on the position and type of the modifications can also be
converted into a tabular format using the separate
function from the
Modstrings
package.
separate(gr$tRNA_seq)
The output can be saved or directly used for further analysis.
library(Biostrings)
library(rtracklayer)
# saving the tRAN sequences as fasta file
writeXStringSet(gr$tRNA_seq, filepath = tempfile())
# converting tRNAdb information to GFF compatible values
gff <- tRNAdb2GFF(gr)
gff
# Saving the information as gff3 file
export.gff3(gff, con = tempfile())
Please have a look at the tRNA
package for further analysis of the tRNA
sequences.
sessionInfo()
## R version 4.4.1 (2024-06-14)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.1 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.20-bioc/R/lib/libRblas.so
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.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] rtracklayer_1.66.0 tRNAdbImport_1.24.0 tRNA_1.24.0
## [4] Structstrings_1.22.0 Modstrings_1.22.0 Biostrings_2.74.0
## [7] XVector_0.46.0 GenomicRanges_1.58.0 GenomeInfoDb_1.42.0
## [10] IRanges_2.40.0 S4Vectors_0.44.0 BiocGenerics_0.52.0
## [13] BiocStyle_2.34.0
##
## loaded via a namespace (and not attached):
## [1] SummarizedExperiment_1.36.0 gtable_0.3.6
## [3] rjson_0.2.23 xfun_0.48
## [5] bslib_0.8.0 ggplot2_3.5.1
## [7] httr2_1.0.5 lattice_0.22-6
## [9] Biobase_2.66.0 vctrs_0.6.5
## [11] tools_4.4.1 bitops_1.0-9
## [13] generics_0.1.3 curl_5.2.3
## [15] parallel_4.4.1 tibble_3.2.1
## [17] fansi_1.0.6 pkgconfig_2.0.3
## [19] Matrix_1.7-1 lifecycle_1.0.4
## [21] GenomeInfoDbData_1.2.13 compiler_4.4.1
## [23] stringr_1.5.1 Rsamtools_2.22.0
## [25] munsell_0.5.1 codetools_0.2-20
## [27] htmltools_0.5.8.1 sass_0.4.9
## [29] RCurl_1.98-1.16 yaml_2.3.10
## [31] pillar_1.9.0 crayon_1.5.3
## [33] jquerylib_0.1.4 BiocParallel_1.40.0
## [35] DelayedArray_0.32.0 cachem_1.1.0
## [37] abind_1.4-8 tidyselect_1.2.1
## [39] digest_0.6.37 stringi_1.8.4
## [41] dplyr_1.1.4 restfulr_0.0.15
## [43] bookdown_0.41 fastmap_1.2.0
## [45] grid_4.4.1 SparseArray_1.6.0
## [47] colorspace_2.1-1 cli_3.6.3
## [49] magrittr_2.0.3 S4Arrays_1.6.0
## [51] XML_3.99-0.17 utf8_1.2.4
## [53] scales_1.3.0 UCSC.utils_1.2.0
## [55] rappdirs_0.3.3 rmarkdown_2.28
## [57] httr_1.4.7 matrixStats_1.4.1
## [59] evaluate_1.0.1 knitr_1.48
## [61] BiocIO_1.16.0 rlang_1.1.4
## [63] glue_1.8.0 BiocManager_1.30.25
## [65] xml2_1.3.6 jsonlite_1.8.9
## [67] R6_2.5.1 MatrixGenerics_1.18.0
## [69] GenomicAlignments_1.42.0 zlibbioc_1.52.0
Jühling, Frank, Mario Mörl, Roland K. Hartmann, Mathias Sprinzl, Peter F. Stadler, and Joern Pütz. 2009. “TRNAdb 2009: Compilation of tRNA Sequences and tRNA Genes.” Nucleic Acids Research 37: D159–D162. https://doi.org/10.1093/nar/gkn772.
Sprinzl, Mathias, and Konstantin S. Vassilenko. 2005. “Compilation of tRNA Sequences and Sequences of tRNA Genes.” Nucleic Acids Research 33: D139–D140. https://doi.org/10.1093/nar/gki012.