Skip to content

Commit 9bbaaf5

Browse files
initial commit
1 parent 7e03286 commit 9bbaaf5

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

docs/src/rosalind/08-prot.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Translating RNA into Protein
2+
3+
🤔 [Problem link](https://rosalind.info/problems/prot/)
4+
5+
!!! warning "The Problem"
6+
7+
The 20 commonly occurring amino acids are abbreviated by using 20 letters from the English alphabet (all letters except for B, J, O, U, X, and Z). Protein strings are constructed from these 20 symbols. Henceforth, the term genetic string will incorporate protein strings along with DNA strings and RNA strings.
8+
9+
The RNA codon table dictates the details regarding the encoding of specific codons into the amino acid alphabet.
10+
11+
Given: An RNA string s corresponding to a strand of mRNA (of length at most 10 kbp).
12+
13+
Return: The protein string encoded by s.
14+
15+
Sample Dataset
16+
```
17+
AUGGCCAUGGCGCCCAGAACUGAGAUCAAUAGUACCCGUAUUAACGGGUGA
18+
```
19+
20+
Sample Output
21+
```
22+
MAMAPRTEINSTRING
23+
```

0 commit comments

Comments
 (0)