Develop a python program that read a text file called input.txt (fixed filename) containing a normal DNA sequence at the first line of the file, and the mutated DNA sequence at the second line of the file. Note: the DNA sequence must be in template strand. This program outputs the transcribed mRNA sequences and translated protein sequences. and determines and outputs the mutation type (missense, silent, or nonsense mutations). Example: *** input.txt *** ATGGTCAGAACGCGCTGAA ATGGTTAGAACGCGCTGAC *** mp.py *** Normal RNA Sequence: UACCAGUCUUGCGCGACUU Normal Protein Sequence: Try Gln Ser Cys Ala Thr Mutated RNA Sequence: UACCAAUCUUGCGCGACUG Mutated Protein Sequence: Try Gln Ser Cys Ala Thr Type of Mutation: Silent Mutation
Develop a python program that read a text file called input.txt (fixed filename) containing a normal DNA sequence at the first line of the file, and the mutated DNA sequence at the second line of the file. Note: the DNA sequence must be in template strand. This program outputs the transcribed mRNA sequences and translated protein sequences. and determines and outputs the mutation type (missense, silent, or nonsense mutations).
Example:
*** input.txt ***
ATGGTCAGAACGCGCTGAA
ATGGTTAGAACGCGCTGAC
*** mp.py ***
Normal RNA Sequence: UACCAGUCUUGCGCGACUU
Normal Protein Sequence: Try Gln Ser Cys Ala Thr
Mutated RNA Sequence: UACCAAUCUUGCGCGACUG
Mutated Protein Sequence: Try Gln Ser Cys Ala Thr
Type of Mutation: Silent Mutation
Step by step
Solved in 4 steps with 3 images