RNA to protein in bash?
2
2
Entering edit mode
8.3 years ago
enrique ▴ 30

Hello everybody.

I'm new in this and I need to do a script in bash that translate a sequence from RNA to protein.

I was using this:

#!/bin/bash

echo "sequence of RNA: $rna "
while read rna ; do

cut=$(echo "${rna}" | sed -n -e 's/\(...\)/\\n/gp'| sed -f dna.sed)
echo "$cut" | tr

dna.sed is another file with the codons.

s/UUU /F /g
s/CUU /L /g
s/AUU /I /g
s/GUU /V /g
..

But I don't know why doesn't work.

Thanks in advance

RNA homework translate protein • 3.8k views
ADD COMMENT
2
Entering edit mode

Is this a homework? Because there are a huge ways to get a protein sequence from a dna one. Furthermore this type of tasks can be done much more easy with bioperl or biopython packages. If you're still interested in writing this kind of script in bash for learning or whatever, you should start writing step by step, and understanding each line code, like:

1) Read rna sequence 3 nt by 3nt
2) Look the 3bp codon in a table/hash/file where the codon -- aa conversion is specified.
3) Write output protein sequence.

ADD REPLY
0
Entering edit mode

Yes, this is a homework. I'm learning to program in different languages and one of the exercises is this.

ADD REPLY
0
Entering edit mode

This is how you ask for help on homework! Other people who just post the question and expect us to do the work for them, take note.

ADD REPLY
0
Entering edit mode
8.3 years ago
rioualen ▴ 710

Hi,

Does it have to be in shell scripting?
Because there are already existing solutions, see R package Biostrings or Biopython for example.

ADD COMMENT
0
Entering edit mode

Yes, it's an exercise that has sent me the teacher.

ADD REPLY
0
Entering edit mode
8.3 years ago
Benn 8.3k

Why don't you use EMBOSS in bash? It has transeq or sixpack methods for translation to proteins.

ADD COMMENT
0
Entering edit mode

Because it's an exercise that has sent the teacher. I'm learning to program in different languages and one of the exercises is this.

ADD REPLY
3
Entering edit mode

Okay, does your teacher allow you to ask help on this forum?

ADD REPLY
1
Entering edit mode

He told us that we can look for information anywhere as long as we knew what we were doing. haha

ADD REPLY
0
Entering edit mode

LOL! :D

ADD REPLY

Login before adding your answer.

Traffic: 1563 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6