X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAlignedCodonFrame.java;h=0e9444fb89111438e625afa3c45e61b566d7e2bb;hb=c16c1633e1a5acc9f44e4de40b9abbb8a59b99b4;hp=f4e2d97ee4826e6135b06ea3e275d056c45c97aa;hpb=d7563d2df09ba5146008951448b941a69bf74744;p=jalview.git diff --git a/src/jalview/datamodel/AlignedCodonFrame.java b/src/jalview/datamodel/AlignedCodonFrame.java index f4e2d97..0e9444f 100644 --- a/src/jalview/datamodel/AlignedCodonFrame.java +++ b/src/jalview/datamodel/AlignedCodonFrame.java @@ -1,3 +1,21 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1) + * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + */ package jalview.datamodel; import java.util.Enumeration; @@ -13,25 +31,29 @@ import jalview.util.MapList; public class AlignedCodonFrame { /** - * array of nucleotide positions for aligned codons at column of aligned proteins. + * array of nucleotide positions for aligned codons at column of aligned + * proteins. */ public int[][] codons = null; + /** - * width of protein sequence alignement - * implicit assertion that codons.length >= aaWidth + * width of protein sequence alignement implicit assertion that codons.length >= + * aaWidth */ - public int aaWidth=0; + public int aaWidth = 0; + /** * initialise codon frame with a nominal alignment width + * * @param aWidth */ public AlignedCodonFrame(int aWidth) { - if (aWidth<=0) - { - codons=null; + if (aWidth <= 0) + { + codons = null; return; - } + } codons = new int[aWidth][]; for (int res = 0; res < aWidth; res++) codons[res] = null; @@ -39,6 +61,7 @@ public class AlignedCodonFrame /** * ensure that codons array is at least as wide as aslen residues + * * @param aslen * @return (possibly newly expanded) codon array */ @@ -57,29 +80,37 @@ public class AlignedCodonFrame } return codons; } + /** - * @return width of aligned translated amino acid residues + * @return width of aligned translated amino acid residues */ public int getaaWidth() { return aaWidth; } + /** - * TODO: not an ideal solution - we reference the aligned amino acid sequences in order to make insertions on them - * Better would be dnaAlignment and aaAlignment reference.... + * TODO: not an ideal solution - we reference the aligned amino acid sequences + * in order to make insertions on them Better would be dnaAlignment and + * aaAlignment reference.... */ - Vector a_aaSeqs=new Vector(); + Vector a_aaSeqs = new Vector(); + /** - * increase aaWidth by one and insert a new aligned codon position space at aspos. + * increase aaWidth by one and insert a new aligned codon position space at + * aspos. + * * @param aspos */ public void insertAAGap(int aspos, char gapCharacter) - { - // this aa appears before the aligned codons at aspos - so shift them in each pair of mapped sequences + { + // this aa appears before the aligned codons at aspos - so shift them in + // each pair of mapped sequences aaWidth++; - if (a_aaSeqs!=null) + if (a_aaSeqs != null) { - // we actually have to modify the aligned sequences here, so use the a_aaSeqs vector + // we actually have to modify the aligned sequences here, so use the + // a_aaSeqs vector Enumeration sq = a_aaSeqs.elements(); while (sq.hasMoreElements()) { @@ -87,11 +118,11 @@ public class AlignedCodonFrame } } checkCodonFrameWidth(aspos); - if (aspos