Skip to content

kenhyj/bio_translation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bio_translation

cDNA <- DNA <-> mRNA -> AA Input two DNA sequence and return type of mutation.

Challenge: given AA, return possible list of DNA, mRNA

High Level Design Brainstorm:
While DNA and RNA IsA Nucleotide, the Liskov Substitution Principle does not allow DNA or RNA to be child class of Nucleotide class.
The preconditions are violated.
Nucleic acids can have AUTCG nucleic acid.
DNA consists of subset: ATCG
RNA consists of subset: AUCG

Low Level Design Brainstorm:

Amino acid table

//public Map<String, String> codontable;
/*
* UUU UUC                                                                       = Phe f
* UUA UUG           CUU CUC CUA CUG                                             = Leu
*                                    AUU AUC AUA                                = Ile
*                                    AUG                                        = Met / start
*                                                     GUU GUC GUA GUG           = Val
* UCU UCC UCA UCG                    AGU AGC                                    = Ser
*                   CCU CCC CCA CCG                                             = Pro
*                                    ACU ACC ACA ACG                            = Thr
*                                                     GCU GCC GCA GCG           = Ala
* UAU UAC                                                                       = Tyr
*                   CAU CAC                                                     = His
*                   CAA CAG                                                     = Gln
*                                    AAU AAC                                    = Asn
*                                    AAA AAG                                    = Lys
*                                                     GAU GAC                   = Asp
*                                                     GAA GAG                   = Glu
* UGC UGU                                                                       = Cys c
* UGG                                                                           = Trp
*                   CGU CGC CGA CGG  AGA AGG                                    = Arg
*                                                     GGU GGC GGA GGG           = Gly
* UGA UAA UAG                                                                   = Stop