1 package jalview.commands;
\r
3 * Jalview - A Sequence Alignment Editor and Viewer
\r
4 * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
6 * This program is free software; you can redistribute it and/or
\r
7 * modify it under the terms of the GNU General Public License
\r
8 * as published by the Free Software Foundation; either version 2
\r
9 * of the License, or (at your option) any later version.
\r
11 * This program is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program; if not, write to the Free Software
\r
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
21 import jalview.datamodel.*;
\r
23 public class RemoveGapColCommand extends EditCommand
\r
25 public RemoveGapColCommand(String description,
\r
27 int start, int end, char gapChar)
\r
29 this.description = description;
\r
31 int j, jSize = seqs.length;
\r
33 int startCol = -1, endCol = -1;
\r
34 int deletedCols = 0;
\r
36 edits = new Edit[0];
\r
38 boolean delete = true;
\r
39 for (int i = start; i <= end; i++)
\r
43 for (j = 0; j < jSize; j++)
\r
45 if (seqs[j].getLength() > i)
\r
47 if (!jalview.util.Comparison.isGap(seqs[j].getCharAt(i)))
\r
58 if (delete && startCol == -1)
\r
63 if (!delete && startCol > -1)
\r
65 this.appendEdit(DELETE_GAP, seqs,
\r
66 startCol - deletedCols,
\r
71 deletedCols += (endCol - startCol);
\r
77 if (delete && startCol > -1)
\r
79 //This is for empty columns at the
\r
80 //end of the alignment
\r
81 int width = end-endCol;
\r
84 width = end-start+1;
\r
87 this.appendEdit(DELETE_GAP, seqs,
\r
88 startCol - deletedCols,
\r