I am working on a project (I have to implement it in Perl, but I'm not very good), which reads DNA and finds its RNA. Divide this RNA into triplets to get the equivalent protein name. I will explain the steps:
1) Write the following DNA in RNA, then use the genetic code to translate it into an amino acid sequence
Example:
TCATAATACGTTTTGTATTCGCCAGCGCTTCGGTGT
2) To transcribe DNA, first replace each DNA with its analog (i.e. G for C, C for G, T for A and A for T):
TCATAATACGTTTTGTATTCGCCAGCGCTTCGGTGT
AGTATTATGCAAAACATAAGCGGTCGCGAAGCCACA
Then remember that the foundation of Timin (T) becomes Uracil (U). Therefore, our sequence will be:
AGUAUUAUGCAAAACAUAAGCGGUCGCGAAGCCACA
Using the genetic code is similar
AGU AUU AUG CAA AAC AUA AGC GGU CGC GAA GCC ACA
() . , AGU Serine, Ser,
S. AUU Isoleucine (Ile), I. , :
SIMQNISGREAT
:

, Perl? , .