It looks like it's using "-complete" to represent the stop codon. As is usually the case, for simple string manipulation it's easier and faster to take BioPerl out of the equation. All you need is a substitution and a lookup table:
my %prot = ( 'TCA'=>'S','TCC'=>'S','TCG'=>'S','TCT'=>'S', 'TTC'=>'F','TTT'=>'F', 'TTA'=>'L','TTG'=>'L', 'TAC'=>'Y','TAT'=>'Y', 'TAA'=>'_','TAG'=>'_','TGA'=>'_', 'TGC'=>'C','TGT'=>'C', 'TGG'=>'W', 'CTA'=>'L','CTC'=>'L','CTG'=>'L','CTT'=>'L', 'CCA'=>'P','CCC'=>'P','CCG'=>'P','CCT'=>'P', 'CAC'=>'H','CAT'=>'H', 'CAA'=>'Q','CAG'=>'Q', 'CGA'=>'R','CGC'=>'R','CGG'=>'R','CGT'=>'R', 'ATA'=>'I','ATC'=>'I','ATT'=>'I', 'ATG'=>'M', 'ACA'=>'T','ACC'=>'T','ACG'=>'T','ACT'=>'T', 'AAC'=>'N','AAT'=>'N', 'AAA'=>'K','AAG'=>'K', 'AGC'=>'S','AGT'=>'S', 'AGA'=>'R','AGG'=>'R', 'GTA'=>'V','GTC'=>'V','GTG'=>'V','GTT'=>'V', 'GCA'=>'A','GCC'=>'A','GCG'=>'A','GCT'=>'A', 'GAC'=>'D','GAT'=>'D', 'GAA'=>'E','GAG'=>'E', 'GGA'=>'G','GGC'=>'G','GGG'=>'G','GGT'=>'G'); sub dna2prot { my $dna = uc shift; $dna =~ y/ACGT//cd; map { s/(...)/$prot{$1}||'?'/eg; $_ } $dna, ''.substr($dna,1), ''.substr($dna,2); } print "$_\n" for dna2prot($sequence)

In reply to Re: BioPerl translate sequence by educated_foo
in thread BioPerl translate sequence by RobertCraven

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.