in reply to Re: Urgent help required. Need a code to translate a given nucleotide sequence into proteins using codon table.
in thread Urgent help required. Need a code to translate a given nucleotide sequence into proteins using codon table.
is printed above asif ( $_ 0 =~ / GGAGCU /i ) { return G;} # Glycine;
if ( $_ 0 =~ / GGAGCU /i ) { return G;} # Glycine;
and should therefore actually probably be translated as
barring ambiguities with regard to whitespace counts. Not that I've done this before....if ( $_[0] =~ /GG[AGCU]/i ) { return G;} # Glycine;
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|