Updated http URLs to https
[bioperl-live.git] / Bio / Tools / CodonTable.pm
blob073ef0e869699d5ca312831989a676f406fae74e
2 # bioperl module for Bio::Tools::CodonTable
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Heikki Lehvaslaiho <heikki-at-bioperl-dot-org>
8 # Copyright Heikki Lehvaslaiho
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
14 =head1 NAME
16 Bio::Tools::CodonTable - Codon table object
18 =head1 SYNOPSIS
20 # This is a read-only class for all known codon tables. The IDs are
21 # the ones used by nucleotide sequence databases. All common IUPAC
22 # ambiguity codes for DNA, RNA and amino acids are recognized.
24 use Bio::Tools::CodonTable;
26 # defaults to ID 1 "Standard"
27 $myCodonTable = Bio::Tools::CodonTable->new();
28 $myCodonTable2 = Bio::Tools::CodonTable->new( -id => 3 );
30 # change codon table
31 $myCodonTable->id(5);
33 # examine codon table
34 print join (' ', "The name of the codon table no.", $myCodonTable->id(4),
35 "is:", $myCodonTable->name(), "\n");
37 # print possible codon tables
38 $tables = Bio::Tools::CodonTable->tables;
39 while ( ($id,$name) = each %{$tables} ) {
40 print "$id = $name\n";
43 # translate a codon
44 $aa = $myCodonTable->translate('ACU');
45 $aa = $myCodonTable->translate('act');
46 $aa = $myCodonTable->translate('ytr');
48 # reverse translate an amino acid
49 @codons = $myCodonTable->revtranslate('A');
50 @codons = $myCodonTable->revtranslate('Ser');
51 @codons = $myCodonTable->revtranslate('Glx');
52 @codons = $myCodonTable->revtranslate('cYS', 'rna');
54 # reverse translate an entire amino acid sequence into a IUPAC
55 # nucleotide string
57 my $seqobj = Bio::PrimarySeq->new(-seq => 'FHGERHEL');
58 my $iupac_str = $myCodonTable->reverse_translate_all($seqobj);
60 # boolean tests
61 print "Is a start\n" if $myCodonTable->is_start_codon('ATG');
62 print "Is a terminator\n" if $myCodonTable->is_ter_codon('tar');
63 print "Is a unknown\n" if $myCodonTable->is_unknown_codon('JTG');
65 =head1 DESCRIPTION
67 Codon tables are also called translation tables or genetic codes
68 since that is what they represent. A bit more complete picture
69 of the full complexity of codon usage in various taxonomic groups
70 is presented at the NCBI Genetic Codes Home page.
72 CodonTable is a BioPerl class that knows all current translation
73 tables that are used by primary nucleotide sequence databases
74 (GenBank, EMBL and DDBJ). It provides methods to output information
75 about tables and relationships between codons and amino acids.
77 This class and its methods recognized all common IUPAC ambiguity codes
78 for DNA, RNA and animo acids. The translation method follows the
79 conventions in EMBL and TREMBL databases.
81 It is a nuisance to separate RNA and cDNA representations of nucleic
82 acid transcripts. The CodonTable object accepts codons of both type as
83 input and allows the user to set the mode for output when reverse
84 translating. Its default for output is DNA.
86 Note:
88 This class deals primarily with individual codons and amino
89 acids. However in the interest of speed you can L<translate>
90 longer sequence, too. The full complexity of protein translation
91 is tackled by L<Bio::PrimarySeqI::translate>.
94 The amino acid codes are IUPAC recommendations for common amino acids:
96 A Ala Alanine
97 R Arg Arginine
98 N Asn Asparagine
99 D Asp Aspartic acid
100 C Cys Cysteine
101 Q Gln Glutamine
102 E Glu Glutamic acid
103 G Gly Glycine
104 H His Histidine
105 I Ile Isoleucine
106 L Leu Leucine
107 K Lys Lysine
108 M Met Methionine
109 F Phe Phenylalanine
110 P Pro Proline
111 O Pyl Pyrrolysine (22nd amino acid)
112 U Sec Selenocysteine (21st amino acid)
113 S Ser Serine
114 T Thr Threonine
115 W Trp Tryptophan
116 Y Tyr Tyrosine
117 V Val Valine
118 B Asx Aspartic acid or Asparagine
119 Z Glx Glutamine or Glutamic acid
120 J Xle Isoleucine or Valine (mass spec ambiguity)
121 X Xaa Any or unknown amino acid
124 It is worth noting that, "Bacterial" codon table no. 11 produces an
125 polypeptide that is, confusingly, identical to the standard one. The
126 only differences are in available initiator codons.
129 NCBI Genetic Codes home page:
130 (Last update of the Genetic Codes: April 30, 2013)
131 https://www.ncbi.nlm.nih.gov/Taxonomy/Utils/wprintgc.cgi?mode=c
133 ASN.1 version with ids 1 to 25 is at:
134 ftp://ftp.ncbi.nih.gov/entrez/misc/data/gc.prt
136 Thanks to Matteo diTomasso for the original Perl implementation
137 of these tables.
139 =head1 FEEDBACK
141 =head2 Mailing Lists
143 User feedback is an integral part of the evolution of this and other
144 Bioperl modules. Send your comments and suggestions preferably to the
145 Bioperl mailing lists Your participation is much appreciated.
147 bioperl-l@bioperl.org - General discussion
148 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
150 =head2 Support
152 Please direct usage questions or support issues to the mailing list:
154 I<bioperl-l@bioperl.org>
156 rather than to the module maintainer directly. Many experienced and
157 reponsive experts will be able look at the problem and quickly
158 address it. Please include a thorough description of the problem
159 with code and data examples if at all possible.
161 =head2 Reporting Bugs
163 Report bugs to the Bioperl bug tracking system to help us keep track
164 the bugs and their resolution. Bug reports can be submitted via the
165 web:
167 https://github.com/bioperl/bioperl-live/issues
169 =head1 AUTHOR - Heikki Lehvaslaiho
171 Email: heikki-at-bioperl-dot-org
173 =head1 APPENDIX
175 The rest of the documentation details each of the object
176 methods. Internal methods are usually preceded with a _
178 =cut
180 # Let the code begin...
182 package Bio::Tools::CodonTable;
183 use vars qw(@NAMES @TABLES @STARTS $TRCOL $CODONS %IUPAC_DNA $CODONGAP $GAP
184 %IUPAC_AA %THREELETTERSYMBOLS $VALID_PROTEIN $TERMINATOR);
185 use strict;
187 # Object preamble - inherits from Bio::Root::Root
188 use Bio::Tools::IUPAC;
189 use Bio::SeqUtils;
191 use base qw(Bio::Root::Root);
194 # first set internal values for all translation tables
196 BEGIN {
197 use constant CODONSIZE => 3;
198 $GAP = '-';
199 $CODONGAP = $GAP x CODONSIZE;
201 @NAMES = #id
203 'Strict', #0, special option for ATG-only start
204 'Standard', #1
205 'Vertebrate Mitochondrial',#2
206 'Yeast Mitochondrial',# 3
207 'Mold, Protozoan, and Coelenterate Mitochondrial and Mycoplasma/Spiroplasma',#4
208 'Invertebrate Mitochondrial',#5
209 'Ciliate, Dasycladacean and Hexamita Nuclear',# 6
210 '', '',
211 'Echinoderm and Flatworm Mitochondrial',#9
212 'Euplotid Nuclear',#10
213 'Bacterial, Archaeal and Plant Plastid',# 11
214 'Alternative Yeast Nuclear',# 12
215 'Ascidian Mitochondrial',# 13
216 'Alternative Flatworm Mitochondrial',# 14
217 'Blepharisma Nuclear',# 15
218 'Chlorophycean Mitochondrial',# 16
219 '', '', '', '',
220 'Trematode Mitochondrial',# 21
221 'Scenedesmus obliquus Mitochondrial', #22
222 'Thraustochytrium Mitochondrial', #23
223 'Pterobranchia Mitochondrial', #24
224 'Candidate Division SR1 and Gracilibacteria', #25
227 @TABLES =
229 FFLLSSSSYY**CC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
230 FFLLSSSSYY**CC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
231 FFLLSSSSYY**CCWWLLLLPPPPHHQQRRRRIIMMTTTTNNKKSS**VVVVAAAADDEEGGGG
232 FFLLSSSSYY**CCWWTTTTPPPPHHQQRRRRIIMMTTTTNNKKSSRRVVVVAAAADDEEGGGG
233 FFLLSSSSYY**CCWWLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
234 FFLLSSSSYY**CCWWLLLLPPPPHHQQRRRRIIMMTTTTNNKKSSSSVVVVAAAADDEEGGGG
235 FFLLSSSSYYQQCC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
236 '' ''
237 FFLLSSSSYY**CCWWLLLLPPPPHHQQRRRRIIIMTTTTNNNKSSSSVVVVAAAADDEEGGGG
238 FFLLSSSSYY**CCCWLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
239 FFLLSSSSYY**CC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
240 FFLLSSSSYY**CC*WLLLSPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
241 FFLLSSSSYY**CCWWLLLLPPPPHHQQRRRRIIMMTTTTNNKKSSGGVVVVAAAADDEEGGGG
242 FFLLSSSSYYY*CCWWLLLLPPPPHHQQRRRRIIIMTTTTNNNKSSSSVVVVAAAADDEEGGGG
243 FFLLSSSSYY*QCC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
244 FFLLSSSSYY*LCC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
245 '' '' '' ''
246 FFLLSSSSYY**CCWWLLLLPPPPHHQQRRRRIIMMTTTTNNNKSSSSVVVVAAAADDEEGGGG
247 FFLLSS*SYY*LCC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
248 FF*LSSSSYY**CC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
249 FFLLSSSSYY**CCWWLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSSKVVVVAAAADDEEGGGG
250 FFLLSSSSYY**CCGWLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG
253 # (bases used for these tables, for reference)
254 # 1 TTTTTTTTTTTTTTTTCCCCCCCCCCCCCCCCAAAAAAAAAAAAAAAAGGGGGGGGGGGGGGGG
255 # 2 TTTTCCCCAAAAGGGGTTTTCCCCAAAAGGGGTTTTCCCCAAAAGGGGTTTTCCCCAAAAGGGG
256 # 3 TCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAGTCAG
258 @STARTS =
260 -----------------------------------M----------------------------
261 ---M---------------M---------------M----------------------------
262 --------------------------------MMMM---------------M------------
263 ----------------------------------MM----------------------------
264 --MM---------------M------------MMMM---------------M------------
265 ---M----------------------------MMMM---------------M------------
266 -----------------------------------M----------------------------
267 '' ''
268 -----------------------------------M---------------M------------
269 -----------------------------------M----------------------------
270 ---M---------------M------------MMMM---------------M------------
271 -------------------M---------------M----------------------------
272 ---M------------------------------MM---------------M------------
273 -----------------------------------M----------------------------
274 -----------------------------------M----------------------------
275 -----------------------------------M----------------------------
276 '' '' '' ''
277 -----------------------------------M---------------M------------
278 -----------------------------------M----------------------------
279 --------------------------------M--M---------------M------------
280 ---M---------------M---------------M---------------M------------
281 ---M-------------------------------M---------------M------------
284 my @nucs = qw(t c a g);
285 my $x = 0;
286 ($CODONS, $TRCOL) = ({}, {});
287 for my $i (@nucs) {
288 for my $j (@nucs) {
289 for my $k (@nucs) {
290 my $codon = "$i$j$k";
291 $CODONS->{$codon} = $x;
292 $TRCOL->{$x} = $codon;
293 $x++;
297 %IUPAC_DNA = Bio::Tools::IUPAC->iupac_iub();
298 %IUPAC_AA = Bio::Tools::IUPAC->iupac_iup();
299 %THREELETTERSYMBOLS = Bio::SeqUtils->valid_aa(2);
300 $VALID_PROTEIN = '['.join('',Bio::SeqUtils->valid_aa(0)).']';
301 $TERMINATOR = '*';
304 sub new {
305 my($class,@args) = @_;
306 my $self = $class->SUPER::new(@args);
308 my($id) =
309 $self->_rearrange([qw(ID
311 @args);
313 $id = 1 if ( ! $id );
314 $id && $self->id($id);
315 return $self; # success - we hope!
318 =head2 id
320 Title : id
321 Usage : $obj->id(3); $id_integer = $obj->id();
322 Function: Sets or returns the id of the translation table. IDs are
323 integers from 0 (special ATG-only start) to 25, excluding
324 7-8 and 17-20 which have been removed. If an invalid ID is
325 given the method returns 1, the standard table.
326 Example :
327 Returns : value of id, a scalar, warn and fall back to 1 (standard table)
328 if specified id is not valid
329 Args : newvalue (optional)
331 =cut
333 sub id{
334 my ($self,$value) = @_;
335 if( defined $value) {
336 if ( not defined $TABLES[$value] or $TABLES[$value] eq '') {
337 $self->warn("Not a valid codon table ID [$value], using [1] instead ");
338 $value = 1;
340 $self->{'id'} = $value;
342 return $self->{'id'};
345 =head2 name
347 Title : name
348 Usage : $obj->name()
349 Function: returns the descriptive name of the translation table
350 Example :
351 Returns : A string
352 Args : None
355 =cut
357 sub name{
358 my ($self) = @_;
360 my ($id) = $self->{'id'};
361 return $NAMES[$id];
364 =head2 tables
366 Title : tables
367 Usage : $obj->tables() or Bio::Tools::CodonTable->tables()
368 Function: returns a hash reference where each key is a valid codon
369 table id() number, and each value is the corresponding
370 codon table name() string
371 Example :
372 Returns : A hashref
373 Args : None
376 =cut
378 sub tables{
379 my %tables;
380 for my $id (0 .. $#NAMES) {
381 my $name = $NAMES[$id];
382 $tables{$id} = $name if $name;
384 return \%tables;
387 =head2 translate
389 Title : translate
390 Usage : $obj->translate('YTR')
391 Function: Returns a string of one letter amino acid codes from
392 nucleotide sequence input. The imput can be of any length.
394 Returns 'X' for unknown codons and codons that code for
395 more than one amino acid. Returns an empty string if input
396 is not three characters long. Exceptions for these are:
398 - IUPAC amino acid code B for Aspartic Acid and
399 Asparagine, is used.
400 - IUPAC amino acid code Z for Glutamic Acid, Glutamine is
401 used.
402 - if the codon is two nucleotides long and if by adding
403 an a third character 'N', it codes for a single amino
404 acid (with exceptions above), return that, otherwise
405 return empty string.
407 Returns empty string for other input strings that are not
408 three characters long.
410 Example :
411 Returns : a string of one letter ambiguous IUPAC amino acid codes
412 Args : ambiguous IUPAC nucleotide string
415 =cut
417 sub translate {
418 my ($self, $seq, $complete_codon) = @_;
419 $self->throw("Calling translate without a seq argument!") unless defined $seq;
420 return '' unless $seq;
422 my $id = $self->id;
423 my ($partial) = 0;
424 $partial = 2 if length($seq) % CODONSIZE == 2;
426 $seq = lc $seq;
427 $seq =~ tr/u/t/;
428 my $protein = "";
429 if ($seq =~ /[^actg]/ ) { #ambiguous chars
430 for (my $i = 0; $i < (length($seq) - (CODONSIZE-1)); $i+= CODONSIZE) {
431 my $triplet = substr($seq, $i, CODONSIZE);
432 if( $triplet eq $CODONGAP ) {
433 $protein .= $GAP;
434 } elsif (exists $CODONS->{$triplet}) {
435 $protein .= substr($TABLES[$id],
436 $CODONS->{$triplet},1);
437 } else {
438 $protein .= $self->_translate_ambiguous_codon($triplet);
441 } else { # simple, strict translation
442 for (my $i = 0; $i < (length($seq) - (CODONSIZE -1)); $i+=CODONSIZE) {
443 my $triplet = substr($seq, $i, CODONSIZE);
444 if( $triplet eq $CODONGAP ) {
445 $protein .= $GAP;
447 if (exists $CODONS->{$triplet}) {
448 $protein .= substr($TABLES[$id], $CODONS->{$triplet}, 1);
449 } else {
450 $protein .= 'X';
454 if ($partial == 2 && $complete_codon) { # 2 overhanging nucleotides
455 my $triplet = substr($seq, ($partial -4)). "n";
456 if( $triplet eq $CODONGAP ) {
457 $protein .= $GAP;
458 } elsif (exists $CODONS->{$triplet}) {
459 my $aa = substr($TABLES[$id], $CODONS->{$triplet},1);
460 $protein .= $aa;
461 } else {
462 $protein .= $self->_translate_ambiguous_codon($triplet, $partial);
465 return $protein;
468 sub _translate_ambiguous_codon {
469 my ($self, $triplet, $partial) = @_;
470 $partial ||= 0;
471 my $id = $self->id;
472 my $aa;
473 my @codons = $self->unambiguous_codons($triplet);
474 my %aas =();
475 foreach my $codon (@codons) {
476 $aas{substr($TABLES[$id],$CODONS->{$codon},1)} = 1;
478 my $count = scalar keys %aas;
479 if ( $count == 1 ) {
480 $aa = (keys %aas)[0];
482 elsif ( $count == 2 ) {
483 if ($aas{'D'} and $aas{'N'}) {
484 $aa = 'B';
486 elsif ($aas{'E'} and $aas{'Q'}) {
487 $aa = 'Z';
488 } else {
489 $partial ? ($aa = '') : ($aa = 'X');
491 } else {
492 $partial ? ($aa = '') : ($aa = 'X');
494 return $aa;
497 =head2 translate_strict
499 Title : translate_strict
500 Usage : $obj->translate_strict('ACT')
501 Function: returns one letter amino acid code for a codon input
503 Fast and simple translation. User is responsible to resolve
504 ambiguous nucleotide codes before calling this
505 method. Returns 'X' for unknown codons and an empty string
506 for input strings that are not three characters long.
508 It is not recommended to use this method in a production
509 environment. Use method translate, instead.
511 Example :
512 Returns : A string
513 Args : a codon = a three nucleotide character string
516 =cut
518 sub translate_strict{
519 my ($self, $value) = @_;
520 my $id = $self->{'id'};
522 $value = lc $value;
523 $value =~ tr/u/t/;
525 return '' unless length $value == 3;
527 return 'X' unless defined $CODONS->{$value};
529 return substr( $TABLES[$id], $CODONS->{$value}, 1 );
532 =head2 revtranslate
534 Title : revtranslate
535 Usage : $obj->revtranslate('G')
536 Function: returns codons for an amino acid
538 Returns an empty string for unknown amino acid
539 codes. Ambiguous IUPAC codes Asx,B, (Asp,D; Asn,N) and
540 Glx,Z (Glu,E; Gln,Q) are resolved. Both single and three
541 letter amino acid codes are accepted. '*' and 'Ter' are
542 used for terminator.
544 By default, the output codons are shown in DNA. If the
545 output is needed in RNA (tr/t/u/), add a second argument
546 'RNA'.
548 Example : $obj->revtranslate('Gly', 'RNA')
549 Returns : An array of three lower case letter strings i.e. codons
550 Args : amino acid, 'RNA'
552 =cut
554 sub revtranslate {
555 my ($self, $value, $coding) = @_;
556 my @codons;
558 if (length($value) == 3 ) {
559 $value = lc $value;
560 $value = ucfirst $value;
561 $value = $THREELETTERSYMBOLS{$value};
563 if ( defined $value and $value =~ /$VALID_PROTEIN/
564 and length($value) == 1
566 my $id = $self->{'id'};
568 $value = uc $value;
569 my @aas = @{$IUPAC_AA{$value}};
570 foreach my $aa (@aas) {
571 #print $aa, " -2\n";
572 $aa = '\*' if $aa eq '*';
573 while ($TABLES[$id] =~ m/$aa/g) {
574 my $p = pos $TABLES[$id];
575 push (@codons, $TRCOL->{--$p});
580 if ($coding and uc ($coding) eq 'RNA') {
581 for my $i (0..$#codons) {
582 $codons[$i] =~ tr/t/u/;
586 return @codons;
589 =head2 reverse_translate_all
591 Title : reverse_translate_all
592 Usage : my $iup_str = $cttable->reverse_translate_all($seq_object)
593 my $iup_str = $cttable->reverse_translate_all($seq_object,
594 $cutable,
595 15);
596 Function: reverse translates a protein sequence into IUPAC nucleotide
597 sequence. An 'X' in the protein sequence is converted to 'NNN'
598 in the nucleotide sequence.
599 Returns : a string
600 Args : a Bio::PrimarySeqI compatible object (mandatory)
601 a Bio::CodonUsage::Table object and a threshold if only
602 codons with a relative frequency above the threshold are
603 to be considered.
604 =cut
606 sub reverse_translate_all {
607 my ($self, $obj, $cut, $threshold) = @_;
609 ## check args are OK
611 if (!$obj || !$obj->isa('Bio::PrimarySeqI')){
612 $self->throw(" I need a Bio::PrimarySeqI object, not a [".
613 ref($obj) . "]");
615 if($obj->alphabet ne 'protein') {
616 $self->throw("Cannot reverse translate, need an amino acid sequence .".
617 "This sequence is of type [" . $obj->alphabet ."]");
619 my @data;
620 my @seq = split '', $obj->seq;
622 ## if we're not supplying a codon usage table...
623 if( !$cut && !$threshold) {
624 ## get lists of possible codons for each aa.
625 for my $aa (@seq) {
626 if ($aa =~ /x/i) {
627 push @data, (['NNN']);
628 }else {
629 my @cods = $self->revtranslate($aa);
630 push @data, \@cods;
633 }else{
634 #else we are supplying a codon usage table, we just want common codons
635 #check args first.
636 if(!$cut->isa('Bio::CodonUsage::Table')) {
637 $self->throw("I need a Bio::CodonUsage::Table object, not a [".
638 ref($cut). "].");
640 my $cod_ref = $cut->probable_codons($threshold);
641 for my $aa (@seq) {
642 if ($aa =~ /x/i) {
643 push @data, (['NNN']);
644 next;
646 push @data, $cod_ref->{$aa};
650 return $self->_make_iupac_string(\@data);
653 =head2 reverse_translate_best
655 Title : reverse_translate_best
656 Usage : my $str = $cttable->reverse_translate_best($seq_object,$cutable);
657 Function: Reverse translates a protein sequence into plain nucleotide
658 sequence (GATC), uses the most common codon for each amino acid
659 Returns : A string
660 Args : A Bio::PrimarySeqI compatible object and a Bio::CodonUsage::Table object
662 =cut
664 sub reverse_translate_best {
666 my ($self, $obj, $cut) = @_;
668 if (!$obj || !$obj->isa('Bio::PrimarySeqI')){
669 $self->throw(" I need a Bio::PrimarySeqI object, not a [".
670 ref($obj) . "]");
672 if ($obj->alphabet ne 'protein') {
673 $self->throw("Cannot reverse translate, need an amino acid sequence .".
674 "This sequence is of type [" . $obj->alphabet ."]");
676 if ( !$cut | !$cut->isa('Bio::CodonUsage::Table')) {
677 $self->throw("I need a Bio::CodonUsage::Table object, not a [".
678 ref($cut). "].");
681 my $str = '';
682 my @seq = split '', $obj->seq;
684 my $cod_ref = $cut->most_common_codons();
686 for my $aa ( @seq ) {
687 if ($aa =~ /x/i) {
688 $str .= 'NNN';
689 next;
691 if ( defined $cod_ref->{$aa} ) {
692 $str .= $cod_ref->{$aa};
693 } else {
694 $self->throw("Input sequence contains invalid character: $aa");
697 return $str;
700 =head2 is_start_codon
702 Title : is_start_codon
703 Usage : $obj->is_start_codon('ATG')
704 Function: returns true (1) for all codons that can be used as a
705 translation start, false (0) for others.
706 Example : $myCodonTable->is_start_codon('ATG')
707 Returns : boolean
708 Args : codon
710 =cut
712 sub is_start_codon{
713 shift->_codon_is( shift, \@STARTS, 'M' );
716 =head2 is_ter_codon
718 Title : is_ter_codon
719 Usage : $obj->is_ter_codon('GAA')
720 Function: returns true (1) for all codons that can be used as a
721 translation tarminator, false (0) for others.
722 Example : $myCodonTable->is_ter_codon('ATG')
723 Returns : boolean
724 Args : codon
726 =cut
728 sub is_ter_codon{
729 shift->_codon_is( shift, \@TABLES, $TERMINATOR );
732 # desc: compares the passed value with a single entry in the given
733 # codon table
734 # args: a value (typically a three-char string like 'atg'),
735 # a reference to the appropriate set of codon tables,
736 # a single-character value to check for at the position in the
737 # given codon table
738 # ret: boolean, true if the given codon table contains the $key at the
739 # position corresponding to $value
740 sub _codon_is {
741 my ($self, $value, $table, $key ) = @_;
743 return 0 unless length $value == 3;
745 $value = lc $value;
746 $value =~ tr/u/t/;
748 my $id = $self->{'id'};
749 for my $c ( $self->unambiguous_codons($value) ) {
750 my $m = substr( $table->[$id], $CODONS->{$c}, 1 );
751 if ($m eq $key) { return 1; }
753 return 0;
756 =head2 is_unknown_codon
758 Title : is_unknown_codon
759 Usage : $obj->is_unknown_codon('GAJ')
760 Function: returns false (0) for all codons that are valid,
761 true (1) for others.
762 Example : $myCodonTable->is_unknown_codon('NTG')
763 Returns : boolean
764 Args : codon
767 =cut
769 sub is_unknown_codon{
770 my ($self, $value) = @_;
771 $value = lc $value;
772 $value =~ tr/u/t/;
773 return 1 unless $self->unambiguous_codons($value);
774 return 0;
777 =head2 unambiguous_codons
779 Title : unambiguous_codons
780 Usage : @codons = $self->unambiguous_codons('ACN')
781 Returns : array of strings (one-letter unambiguous amino acid codes)
782 Args : a codon = a three IUPAC nucleotide character string
784 =cut
786 sub unambiguous_codons{
787 my ($self,$value) = @_;
788 my @nts = map { $IUPAC_DNA{uc $_} } split(//, $value);
790 my @codons;
791 for my $i ( @{$nts[0]} ) {
792 for my $j ( @{$nts[1]} ) {
793 for my $k ( @{$nts[2]} ) {
794 push @codons, lc "$i$j$k";
796 return @codons;
799 =head2 _unambiquous_codons
801 deprecated, now an alias for unambiguous_codons
803 =cut
805 sub _unambiquous_codons {
806 unambiguous_codons( undef, @_ );
809 =head2 add_table
811 Title : add_table
812 Usage : $newid = $ct->add_table($name, $table, $starts)
813 Function: Add a custom Codon Table into the object.
814 Know what you are doing, only the length of
815 the argument strings is checked!
816 Returns : the id of the new codon table
817 Args : name, a string, optional (can be empty)
818 table, a string of 64 characters
819 startcodons, a string of 64 characters, defaults to standard
821 =cut
823 sub add_table {
824 my ($self, $name, $table, $starts) = @_;
826 $name ||= 'Custom' . $#NAMES + 1;
827 $starts ||= $STARTS[1];
828 $self->throw('Suspect input!')
829 unless length($table) == 64 and length($starts) == 64;
831 push @NAMES, $name;
832 push @TABLES, $table;
833 push @STARTS, $starts;
835 return $#NAMES;
838 sub _make_iupac_string {
839 my ($self, $cod_ref) = @_;
840 if(ref($cod_ref) ne 'ARRAY') {
841 $self->throw(" I need a reference to a list of references to codons, ".
842 " not a [". ref($cod_ref) . "].");
844 my %iupac_hash = Bio::Tools::IUPAC->iupac_rev_iub();
845 my $iupac_string = ''; ## the string to be returned
846 for my $aa (@$cod_ref) {
848 ## scan through codon positions, record the differing values,
849 # then look up in the iub hash
850 for my $index(0..2) {
851 my %h;
852 map { my $k = substr($_,$index,1);
853 $h{$k} = undef;} @$aa;
854 my $lookup_key = join '', sort{$a cmp $b}keys %h;
856 ## extend string
857 $iupac_string .= $iupac_hash{uc$lookup_key};
860 return $iupac_string;