A Python Programming in Medicine. A techy doctor from the Great Kanagawa Prefecture has become famous for his new offering of medical service, a personalized treatment of his patients that utilizes bioinformatics. By taking some samples of DNA from his patients, he uses state-of-the-art equipment to let computer collect and extract important information that can be found in the DNA sequence. Applying computational analysis on the data extracted would enable the doctor to determine more accurately his patients’ real health problems. In this scenario, you will serve as an intern in his laboratory who will be assigned an important task. You will be given a long DNA sequence, which is represented in a string of letters. Your task is to convert 3-letter codons into protein residues. The output would be the corresponding residues.   INPUT: DNA sequence OUTPUT: Generated 3-letter codons and corresponding protein residues   An input sample of DNA sequence would

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

A Python Programming in Medicine. A techy doctor from the Great Kanagawa Prefecture has become famous for his new offering of medical service, a personalized treatment of his patients that utilizes bioinformatics. By taking some samples of DNA from his patients, he uses state-of-the-art equipment to let computer collect and extract important information that can be found in the DNA sequence. Applying computational analysis on the data extracted would enable the doctor to determine more accurately his patients’ real health problems. In this scenario, you will serve as an intern in his laboratory who will be assigned an important task. You will be given a long DNA sequence, which is represented in a string of letters. Your task is to convert 3-letter codons into protein residues. The output would be the corresponding residues.

 

INPUT: DNA sequence

OUTPUT: Generated 3-letter codons and corresponding protein residues

 

An input sample of DNA sequence would look like this:

TGGTACTCTTTCTTCACAAGGGCGCCGTGTGTG

 

The 3-letter codons are simply every three letters in the sequence.

TGG TAC TCT TTC TTC ACA AGG GCG CCG TGT GT

 

Note: The sequence might not have a multiple of 3 bases. If that happens you must map the final 1- or 2-base term to asterisk, instead.

 

The corresponding protein residues based on generated 3-letter codons and equivalent mapping will be:

WYSFFTRAPC*

 

Mapping:
'TTC': 'F',
'TTT': 'F'.
'TCA': 'S', 'TCG': 'S',
"TGG': 'W',
"CCC': 'P', 'CCA': 'P',
'TTA': 'L', 'TTG': 'L', 'TCT': 'S', 'TCC': 'S',
'TGT': 'C', 'TGC': 'C',
'CTA': 'L', 'CTG': 'L', 'CCT': 'P',
"CCG': 'P', 'CAT': 'H', 'CAC': 'H', 'CAA': 'Q',
"CGA': 'R', 'CGG': 'R', 'ATT': 'I',
'ACC': 'T', 'ACA': 'T',
"AAG': 'K', 'AGT': 'S'
"TAT': 'Y', 'TAC': 'Y',
"CTT': 'L', 'CTC': 'L',
"CGC': 'R'
"CAG': 'Q', 'CGT': 'R',
'ATC': 'I', 'ATA': 'I',
'ACG': 'T', 'AAT': 'N',
'AGC': 'S', 'AGA': 'R',
"GTG': 'V',
"GAC': 'D', 'GAA': 'E',
"ACT': 'T',
"AAA': 'K',
"GTT': 'V',
"ATG': 'M'
"AAC': 'N'
"GTA': 'V',
'GCC': 'A', 'GCA': 'A', 'GCG': 'A', 'GAT': 'D',
"GGT': 'G', 'GGC': 'G', 'GGA': 'G',
'AGG': 'R'
"GTC': 'V',
"GCT': 'A',
"GAG':
'E',
"GGG': 'G'
Transcribed Image Text:Mapping: 'TTC': 'F', 'TTT': 'F'. 'TCA': 'S', 'TCG': 'S', "TGG': 'W', "CCC': 'P', 'CCA': 'P', 'TTA': 'L', 'TTG': 'L', 'TCT': 'S', 'TCC': 'S', 'TGT': 'C', 'TGC': 'C', 'CTA': 'L', 'CTG': 'L', 'CCT': 'P', "CCG': 'P', 'CAT': 'H', 'CAC': 'H', 'CAA': 'Q', "CGA': 'R', 'CGG': 'R', 'ATT': 'I', 'ACC': 'T', 'ACA': 'T', "AAG': 'K', 'AGT': 'S' "TAT': 'Y', 'TAC': 'Y', "CTT': 'L', 'CTC': 'L', "CGC': 'R' "CAG': 'Q', 'CGT': 'R', 'ATC': 'I', 'ATA': 'I', 'ACG': 'T', 'AAT': 'N', 'AGC': 'S', 'AGA': 'R', "GTG': 'V', "GAC': 'D', 'GAA': 'E', "ACT': 'T', "AAA': 'K', "GTT': 'V', "ATG': 'M' "AAC': 'N' "GTA': 'V', 'GCC': 'A', 'GCA': 'A', 'GCG': 'A', 'GAT': 'D', "GGT': 'G', 'GGC': 'G', 'GGA': 'G', 'AGG': 'R' "GTC': 'V', "GCT': 'A', "GAG': 'E', "GGG': 'G'
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education