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