(This is a database / R commands question)

I wish (for my thesis work), to import tRNA data into R and have it aligned.

My questions are:
1) What resources can I use for the data.
2) What commands might help me with the import/alignment.

So far, I found two nice repositories that holds such data:

And also the readFASTA command of the Biostrings R Package, that does basic importing of the data into R.

My problem still remains with how to handle the alignment of the tRNA.

Since I am not from the field, I might be missing a very basic answer (like where I should download the data from, or what command to use). If you might be willing to advice me, that would be most helpful.

Many thanks in advance, Tal

link|improve this question

76% accept rate
I don't think R is the best tool for managing sequence alignment. Is there a reason why you have to import tRNA to R? – xiechao Mar 12 '10 at 7:40
2  
Since this is not a programming but a bioinformatic-related question, you should better ask it here: biostar.stackexchange.com – dalloliogm Mar 12 '10 at 9:42
xiechao - I wish to import them to R since this is my "native (statistical) language" (so to speak). And I want to perform statistical analysis on some of them :) – Tal Galili Mar 12 '10 at 13:47
dalloliogm - Thank you VERY much, I was hoping for pointers on where to ask this question (and didn't even know where to go to) - Thanks again! – Tal Galili Mar 12 '10 at 13:48
Thanks dalloliogm. I didn't know stack overflow had a bio-oriented clone. cool stuff. – awesomo Mar 13 '10 at 20:57
feedback

2 Answers

up vote 1 down vote accepted

The two databases you have listed look like a good place to start. Here's another: tRNADB-CE.

Obtaining a curated dataset can save you a lot of headaches. Have you looked for any good review papers on tRNA genes that might point to "gold standard" tRNA databases currently used in the field?

Another way to go about building a tRNA sequence database would be to use sequences tagged with Geno Ontology (GO) terms related to tRNA function. You can search for GO terms such as "trna" using AmiGO and then retrieve all sequences tagged with the specific GO terms that you care about. I would recommend starting with a curated database, however.

Given that your sequence data is in FASTA format (which it probably will be), three common utilities for multiple sequence alignment are: clustalW, MUSCLE, and T-Coffee.

Since you are working in R, here is an R package that will allow you to make calls to MUSCLE (you will need to install the stand-alone MUSCLE utility as well). Parsing the output from the alignment programs is not difficult, but this package may save you a little effort.

Good luck.

link|improve this answer
Hi awesomo, thank you so much for your reply. After further reading, I see now that this database: gtrnadb.ucsc.edu Does Structural alignments by aligning tRNA sequences against domain-specific tRNA covariance models with the use of COVE. Can MUSCLE do the same? (Thanks again!) Tal – Tal Galili Mar 12 '10 at 13:29
1  
I took a look at the cove paper and their "covariance models" are basically hidden markov models with additional metadata that takes into account RNA secondary structure. One thing you could do with the RNA sequence data is use MUSCLE to construct a Multiple Sequence Alignment (MSA) of the sequences you're interested in; then use a tool like HMMER (hmmer.janelia.org) to build your own custom HMM; finally use your HMM to scan against genomes in search of similar sequences. I recommend you get an understanding of the cove paper first however to understand the pitfalls. – awesomo Mar 13 '10 at 20:53
Awesomo - very informative reply, thank you! A question: after getting a few more replies from people, I am gathering that the alignment is (as you wrote) is based on first folding the tRNA's to their secondary structure. Is there any way of doing that in R? p.s: since I am new to this, I see how it takes me time to clarify my questions - thanks for your (and others) patience! – Tal Galili Mar 13 '10 at 22:58
I'm not aware of a R library for predicting RNA secondary structure (I haven't looked, so it may very well exist). – awesomo Mar 14 '10 at 1:09
feedback

You can create cove-based structural tRNA-alignments from Lowe's models (the same as gtRNAdb) of your tRNAs using the TFAM webserver. Right now the most reliable server to use is http://tfam.lcb.uu.se

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.