X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAlignedCodon.java;h=39a18539edb3381b7c2b6c0e49a9d12d5a280d73;hb=37de9310bec3501cbc6381e0c3dcb282fcaad812;hp=9accf06212558f2b02a2fcedc3cdb9d493ef31e6;hpb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;p=jalview.git diff --git a/src/jalview/datamodel/AlignedCodon.java b/src/jalview/datamodel/AlignedCodon.java index 9accf06..39a1853 100644 --- a/src/jalview/datamodel/AlignedCodon.java +++ b/src/jalview/datamodel/AlignedCodon.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -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; } /**