2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.analysis.AlignSeq;
24 import jalview.datamodel.Alignment;
25 import jalview.datamodel.Sequence;
26 import jalview.datamodel.SequenceI;
27 import jalview.jbgui.GPairwiseAlignPanel;
28 import jalview.util.MessageManager;
29 import jalview.viewmodel.AlignmentViewport;
31 import java.awt.event.ActionEvent;
32 import java.util.Vector;
40 public class PairwiseAlignPanel extends GPairwiseAlignPanel
48 * Creates a new PairwiseAlignPanel object.
53 public PairwiseAlignPanel(AlignmentViewport av)
58 sequences = new Vector();
61 String[] seqStrings = av.getViewAsString(true);
63 if (av.getSelectionGroup() == null)
65 seqs = av.getAlignment().getSequencesArray();
69 seqs = av.getSelectionGroup().getSequencesInOrder(av.getAlignment());
72 String type = (av.getAlignment().isNucleotide()) ? AlignSeq.DNA
75 float[][] scores = new float[seqs.length][seqs.length];
77 int count = seqs.length;
81 for (int i = 1; i < count; i++)
83 for (int j = 0; j < i; j++)
86 AlignSeq as = new AlignSeq(seqs[i], seqStrings[i], seqs[j],
89 if (as.s1str.length() == 0 || as.s2str.length() == 0)
97 as.printAlignment(System.out);
98 scores[i][j] = (float) as.getMaxScore()
99 / (float) as.getASeq1().length;
100 totscore = totscore + scores[i][j];
102 textarea.append(as.getOutput());
103 sequences.add(as.getAlignedSeq1());
104 sequences.add(as.getAlignedSeq2());
111 .println("Pairwise alignment scaled similarity score matrix\n");
113 for (int i = 0; i < count; i++)
115 jalview.util.Format.print(System.out, "%s \n", ("" + i) + " "
116 + seqs[i].getName());
119 System.out.println("\n");
121 for (int i = 0; i < count; i++)
123 for (int j = 0; j < i; j++)
125 jalview.util.Format.print(System.out, "%7.3f", scores[i][j]
130 System.out.println("\n");
140 protected void viewInEditorButton_actionPerformed(ActionEvent e)
142 Sequence[] seq = new Sequence[sequences.size()];
144 for (int i = 0; i < sequences.size(); i++)
146 seq[i] = (Sequence) sequences.elementAt(i);
149 AlignFrame af = new AlignFrame(new Alignment(seq),
150 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
152 Desktop.addInternalFrame(af,
153 MessageManager.getString("label.pairwise_aligned_sequences"),
154 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);