X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAlignedCodon.java;h=39a18539edb3381b7c2b6c0e49a9d12d5a280d73;hb=daae26d77ca41f38972dfcada536e95bdfb5c753;hp=61798314218485fc414a64c61f8d18d106630bfe;hpb=db4eacee27b836db4126dca551887bfc6652d72a;p=jalview.git diff --git a/src/jalview/datamodel/AlignedCodon.java b/src/jalview/datamodel/AlignedCodon.java index 6179831..39a1853 100644 --- a/src/jalview/datamodel/AlignedCodon.java +++ b/src/jalview/datamodel/AlignedCodon.java @@ -27,32 +27,38 @@ package jalview.datamodel; * * Example: in "G-AT-C-GA" the aligned codons are (0, 2, 3) and (5, 7, 8). * - * JBPComment: Is this useful anywhere other than jalview.analysis.Dna ? - * * @author gmcarstairs * */ public final class AlignedCodon { + // base 1 aligned sequence position (base 0) public final int pos1; + // base 2 aligned sequence position (base 0) public final int pos2; + // base 3 aligned sequence position (base 0) public final int pos3; + // peptide aligned sequence position (base 0) + public final int peptideCol; + + // peptide coded for by this codon public final String product; public AlignedCodon(int i, int j, int k) { - this(i, j, k, null); + this(i, j, k, null, 0); } - public AlignedCodon(int i, int j, int k, String prod) + public AlignedCodon(int i, int j, int k, String prod, int prodCol) { pos1 = i; pos2 = j; pos3 = k; product = prod; + peptideCol = prodCol; } /**