Help for this page

Select Code to Download


  1. or download this
    sub proteintrans {
        my ($dna) = @_;
    ...
            return $protein;
        }
    }
    
  2. or download this
    sub proteintrans {
        my ($dna) = @_;
    ...
        # else return protein (rest of $dna)
        return $protein;
    }
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
                    ? $genetic_code{$codon}
                    : undef;
    }