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.
21 package jalview.analysis;
23 import jalview.datamodel.AlignmentAnnotation;
24 import jalview.datamodel.AlignmentI;
25 import jalview.datamodel.Mapping;
26 import jalview.datamodel.Sequence;
27 import jalview.datamodel.SequenceI;
28 import jalview.schemes.ResidueProperties;
29 import jalview.schemes.ScoreMatrix;
30 import jalview.util.Comparison;
31 import jalview.util.Format;
32 import jalview.util.MapList;
33 import jalview.util.MessageManager;
35 import java.awt.Color;
36 import java.awt.Graphics;
37 import java.util.ArrayList;
38 import java.util.Arrays;
39 import java.util.List;
40 import java.util.StringTokenizer;
50 public static final String PEP = "pep";
52 public static final String DNA = "dna";
55 { "A", "C", "G", "T", "-" };
57 // "C", "T", "A", "G", "-"};
59 { "A", "R", "N", "D", "C", "Q", "E", "G", "H", "I", "L", "K", "M", "F",
60 "P", "S", "T", "W", "Y", "V", "B", "Z", "X", "-" };
90 public String astr1 = "";
92 public String astr2 = "";
101 public int seq2start;
119 int[][] lookup = ResidueProperties.getBLOSUM62();
121 String[] intToStr = pep;
125 StringBuffer output = new StringBuffer();
129 private int[] charToInt;
132 * Creates a new AlignSeq object.
141 public AlignSeq(SequenceI s1, SequenceI s2, String type)
143 SeqInit(s1, s1.getSequenceAsString(), s2, s2.getSequenceAsString(),
148 * Creates a new AlignSeq object.
157 public AlignSeq(SequenceI s1, String string1, SequenceI s2,
158 String string2, String type)
160 SeqInit(s1, string1.toUpperCase(), s2, string2.toUpperCase(), type);
166 * @return DOCUMENT ME!
168 public int getMaxScore()
176 * @return DOCUMENT ME!
178 public int getSeq2Start()
186 * @return DOCUMENT ME!
188 public int getSeq2End()
196 * @return DOCUMENT ME!
198 public int getSeq1Start()
206 * @return DOCUMENT ME!
208 public int getSeq1End()
216 * @return DOCUMENT ME!
218 public String getOutput()
220 return output.toString();
226 * @return DOCUMENT ME!
228 public String getAStr1()
236 * @return DOCUMENT ME!
238 public String getAStr2()
246 * @return DOCUMENT ME!
248 public int[] getASeq1()
256 * @return DOCUMENT ME!
258 public int[] getASeq2()
266 * @return DOCUMENT ME!
268 public SequenceI getS1()
276 * @return DOCUMENT ME!
278 public SequenceI getS2()
285 * @return aligned instance of Seq 1
287 public SequenceI getAlignedSeq1()
289 SequenceI alSeq1 = new Sequence(s1.getName(), getAStr1());
290 alSeq1.setStart(s1.getStart() + getSeq1Start() - 1);
291 alSeq1.setEnd(s1.getStart() + getSeq1End() - 1);
292 alSeq1.setDatasetSequence(s1.getDatasetSequence() == null ? s1 : s1
293 .getDatasetSequence());
299 * @return aligned instance of Seq 2
301 public SequenceI getAlignedSeq2()
303 SequenceI alSeq2 = new Sequence(s2.getName(), getAStr2());
304 alSeq2.setStart(s2.getStart() + getSeq2Start() - 1);
305 alSeq2.setEnd(s2.getStart() + getSeq2End() - 1);
306 alSeq2.setDatasetSequence(s2.getDatasetSequence() == null ? s2 : s2
307 .getDatasetSequence());
312 * Construct score matrix for sequences with standard DNA or PEPTIDE matrix
317 * - string to use for s1
321 * - string to use for s2
325 public void SeqInit(SequenceI s1, String string1, SequenceI s2,
326 String string2, String type)
330 setDefaultParams(type);
331 SeqInit(string1, string2);
335 * Construct score matrix for sequences with custom substitution matrix
340 * - string to use for s1
344 * - string to use for s2
346 * - substitution matrix to use for alignment
348 public void SeqInit(SequenceI s1, String string1, SequenceI s2,
349 String string2, ScoreMatrix scoreMatrix)
353 setType(scoreMatrix.isDNA() ? AlignSeq.DNA : AlignSeq.PEP);
354 lookup = scoreMatrix.getMatrix();
358 * construct score matrix for string1 and string2 (after removing any existing
364 private void SeqInit(String string1, String string2)
366 s1str = extractGaps(jalview.util.Comparison.GapChars, string1);
367 s2str = extractGaps(jalview.util.Comparison.GapChars, string2);
369 if (s1str.length() == 0 || s2str.length() == 0)
371 output.append("ALL GAPS: "
372 + (s1str.length() == 0 ? s1.getName() : " ")
373 + (s2str.length() == 0 ? s2.getName() : ""));
377 // System.out.println("lookuip " + rt.freeMemory() + " "+ rt.totalMemory());
378 seq1 = new int[s1str.length()];
380 // System.out.println("seq1 " + rt.freeMemory() +" " + rt.totalMemory());
381 seq2 = new int[s2str.length()];
383 // System.out.println("seq2 " + rt.freeMemory() + " " + rt.totalMemory());
384 score = new int[s1str.length()][s2str.length()];
386 // System.out.println("score " + rt.freeMemory() + " " + rt.totalMemory());
387 E = new int[s1str.length()][s2str.length()];
389 // System.out.println("E " + rt.freeMemory() + " " + rt.totalMemory());
390 F = new int[s1str.length()][s2str.length()];
391 traceback = new int[s1str.length()][s2str.length()];
393 // System.out.println("F " + rt.freeMemory() + " " + rt.totalMemory());
394 seq1 = stringToInt(s1str, type);
396 // System.out.println("seq1 " + rt.freeMemory() + " " + rt.totalMemory());
397 seq2 = stringToInt(s2str, type);
399 // System.out.println("Seq2 " + rt.freeMemory() + " " + rt.totalMemory());
400 // long tstart = System.currentTimeMillis();
401 // calcScoreMatrix();
402 // long tend = System.currentTimeMillis();
403 // System.out.println("Time take to calculate score matrix = " +
404 // (tend-tstart) + " ms");
405 // printScoreMatrix(score);
406 // System.out.println();
407 // printScoreMatrix(traceback);
408 // System.out.println();
409 // printScoreMatrix(E);
410 // System.out.println();
411 // /printScoreMatrix(F);
412 // System.out.println();
413 // tstart = System.currentTimeMillis();
415 // tend = System.currentTimeMillis();
416 // System.out.println("Time take to traceback alignment = " + (tend-tstart)
420 private void setDefaultParams(String type)
424 if (type.equals(AlignSeq.PEP))
426 lookup = ResidueProperties.getDefaultPeptideMatrix();
428 else if (type.equals(AlignSeq.DNA))
430 lookup = ResidueProperties.getDefaultDnaMatrix();
434 private void setType(String type2)
437 if (type.equals(AlignSeq.PEP))
440 charToInt = ResidueProperties.aaIndex;
441 defInt = ResidueProperties.maxProteinIndex;
443 else if (type.equals(AlignSeq.DNA))
446 charToInt = ResidueProperties.nucleotideIndex;
447 defInt = ResidueProperties.maxNucleotideIndex;
451 output.append("Wrong type = dna or pep only");
452 throw new Error(MessageManager.formatMessage("error.unknown_type_dna_or_pep", new String[]{type2}));
459 public void traceAlignment()
461 // Find the maximum score along the rhs or bottom row
464 for (int i = 0; i < seq1.length; i++)
466 if (score[i][seq2.length - 1] > max)
468 max = score[i][seq2.length - 1];
470 maxj = seq2.length - 1;
474 for (int j = 0; j < seq2.length; j++)
476 if (score[seq1.length - 1][j] > max)
478 max = score[seq1.length - 1][j];
479 maxi = seq1.length - 1;
484 // System.out.println(maxi + " " + maxj + " " + score[maxi][maxj]);
488 maxscore = score[i][j] / 10;
493 aseq1 = new int[seq1.length + seq2.length];
494 aseq2 = new int[seq1.length + seq2.length];
496 count = (seq1.length + seq2.length) - 1;
498 while ((i > 0) && (j > 0))
500 if ((aseq1[count] != defInt) && (i >= 0))
502 aseq1[count] = seq1[i];
503 astr1 = s1str.charAt(i) + astr1;
506 if ((aseq2[count] != defInt) && (j > 0))
508 aseq2[count] = seq2[j];
509 astr2 = s2str.charAt(j) + astr2;
512 trace = findTrace(i, j);
522 aseq1[count] = defInt;
523 astr1 = "-" + astr1.substring(1);
525 else if (trace == -1)
528 aseq2[count] = defInt;
529 astr2 = "-" + astr2.substring(1);
538 if (aseq1[count] != defInt)
540 aseq1[count] = seq1[i];
541 astr1 = s1str.charAt(i) + astr1;
544 if (aseq2[count] != defInt)
546 aseq2[count] = seq2[j];
547 astr2 = s2str.charAt(j) + astr2;
554 public void printAlignment(java.io.PrintStream os)
556 // TODO: Use original sequence characters rather than re-translated
557 // characters in output
558 // Find the biggest id length for formatting purposes
559 String s1id = s1.getName(), s2id = s2.getName();
560 int maxid = s1.getName().length();
561 if (s2.getName().length() > maxid)
563 maxid = s2.getName().length();
568 // JAL-527 - truncate the sequence ids
569 if (s1.getName().length() > maxid)
571 s1id = s1.getName().substring(0, 30);
573 if (s2.getName().length() > maxid)
575 s2id = s2.getName().substring(0, 30);
578 int len = 72 - maxid - 1;
579 int nochunks = ((aseq1.length - count) / len) + 1;
582 output.append("Score = " + score[maxi][maxj] + "\n");
583 output.append("Length of alignment = " + (aseq1.length - count) + "\n");
584 output.append("Sequence ");
585 output.append(new Format("%" + maxid + "s").form(s1.getName()));
586 output.append(" : " + s1.getStart() + " - " + s1.getEnd()
587 + " (Sequence length = " + s1str.length() + ")\n");
588 output.append("Sequence ");
589 output.append(new Format("%" + maxid + "s").form(s2.getName()));
590 output.append(" : " + s2.getStart() + " - " + s2.getEnd()
591 + " (Sequence length = " + s2str.length() + ")\n\n");
593 for (int j = 0; j < nochunks; j++)
595 // Print the first aligned sequence
596 output.append(new Format("%" + (maxid) + "s").form(s1id) + " ");
598 for (int i = 0; i < len; i++)
600 if ((i + (j * len)) < astr1.length())
602 output.append(astr1.charAt(i + (j * len)));
607 output.append(new Format("%" + (maxid) + "s").form(" ") + " ");
609 // Print out the matching chars
610 for (int i = 0; i < len; i++)
612 if ((i + (j * len)) < astr1.length())
614 if (astr1.charAt(i + (j * len)) == astr2.charAt(i + (j * len))
615 && !jalview.util.Comparison.isGap(astr1.charAt(i
621 else if (type.equals("pep"))
623 if (ResidueProperties.getPAM250(astr1.charAt(i + (j * len)),
624 astr2.charAt(i + (j * len))) > 0)
640 // Now print the second aligned sequence
641 output = output.append("\n");
642 output = output.append(new Format("%" + (maxid) + "s").form(s2id)
645 for (int i = 0; i < len; i++)
647 if ((i + (j * len)) < astr2.length())
649 output.append(astr2.charAt(i + (j * len)));
653 output = output.append("\n\n");
656 pid = pid / (aseq1.length - count) * 100;
657 output = output.append(new Format("Percentage ID = %2.2f\n\n")
662 os.print(output.toString());
663 } catch (Exception ex)
674 public void printScoreMatrix(int[][] mat)
679 for (int i = 0; i < n; i++)
681 // Print the top sequence
684 Format.print(System.out, "%8s", s2str.substring(0, 1));
686 for (int jj = 1; jj < m; jj++)
688 Format.print(System.out, "%5s", s2str.substring(jj, jj + 1));
691 System.out.println();
694 for (int j = 0; j < m; j++)
698 Format.print(System.out, "%3s", s1str.substring(i, i + 1));
701 Format.print(System.out, "%3d ", mat[i][j] / 10);
704 System.out.println();
716 * @return DOCUMENT ME!
718 public int findTrace(int i, int j)
721 int max = score[i - 1][j - 1] + (lookup[seq1[i]][seq2[j]] * 10);
728 else if (F[i][j] == max)
742 else if (E[i][j] == max)
759 public void calcScoreMatrix()
764 // top left hand element
765 score[0][0] = lookup[seq1[0]][seq2[0]] * 10;
766 E[0][0] = -gapExtend;
769 // Calculate the top row first
770 for (int j = 1; j < m; j++)
772 // What should these values be? 0 maybe
773 E[0][j] = max(score[0][j - 1] - gapOpen, E[0][j - 1] - gapExtend);
774 F[0][j] = -gapExtend;
776 score[0][j] = max(lookup[seq1[0]][seq2[j]] * 10, -gapOpen, -gapExtend);
781 // Now do the left hand column
782 for (int i = 1; i < n; i++)
785 F[i][0] = max(score[i - 1][0] - gapOpen, F[i - 1][0] - gapExtend);
787 score[i][0] = max(lookup[seq1[i]][seq2[0]] * 10, E[i][0], F[i][0]);
788 traceback[i][0] = -1;
791 // Now do all the other rows
792 for (int i = 1; i < n; i++)
794 for (int j = 1; j < m; j++)
796 E[i][j] = max(score[i][j - 1] - gapOpen, E[i][j - 1] - gapExtend);
797 F[i][j] = max(score[i - 1][j] - gapOpen, F[i - 1][j] - gapExtend);
799 score[i][j] = max(score[i - 1][j - 1]
800 + (lookup[seq1[i]][seq2[j]] * 10), E[i][j], F[i][j]);
801 traceback[i][j] = findTrace(i, j);
807 * Returns the given sequence with all of the given gap characters removed.
810 * a string of characters to be treated as gaps
816 public static String extractGaps(String gapChars, String seq)
818 if (gapChars == null || seq == null)
822 StringTokenizer str = new StringTokenizer(seq, gapChars);
823 StringBuilder newString = new StringBuilder(seq.length());
825 while (str.hasMoreTokens())
827 newString.append(str.nextToken());
830 return newString.toString();
843 * @return DOCUMENT ME!
845 public int max(int i1, int i2, int i3)
870 * @return DOCUMENT ME!
872 public int max(int i1, int i2)
892 * @return DOCUMENT ME!
894 public int[] stringToInt(String s, String type)
896 int[] seq1 = new int[s.length()];
898 for (int i = 0; i < s.length(); i++)
900 // String ss = s.substring(i, i + 1).toUpperCase();
901 char c = s.charAt(i);
902 if ('a' <= c && c <= 'z')
910 seq1[i] = charToInt[c]; // set accordingly from setType
911 if (seq1[i] < 0 || seq1[i] > defInt) // set from setType: 23 for
912 // peptides, or 4 for NA.
917 } catch (Exception e)
940 public static void displayMatrix(Graphics g, int[][] mat, int n, int m,
946 for (int i = 0; i < n; i++)
948 for (int j = 0; j < m; j++)
950 if (mat[i][j] >= max)
955 if (mat[i][j] <= min)
962 System.out.println(max + " " + min);
964 for (int i = 0; i < n; i++)
966 for (int j = 0; j < m; j++)
971 // System.out.println(mat[i][j]);
972 float score = (float) (mat[i][j] - min) / (float) (max - min);
973 g.setColor(new Color(score, 0, 0));
974 g.fillRect(x, y, psize, psize);
976 // System.out.println(x + " " + y + " " + score);
982 * Compute a globally optimal needleman and wunsch alignment between two
988 * AlignSeq.DNA or AlignSeq.PEP
990 public static AlignSeq doGlobalNWAlignment(SequenceI s1, SequenceI s2,
993 AlignSeq as = new AlignSeq(s1, s2, type);
995 as.calcScoreMatrix();
1002 * @return mapping from positions in S1 to corresponding positions in S2
1004 public jalview.datamodel.Mapping getMappingFromS1(boolean allowmismatch)
1006 ArrayList<Integer> as1 = new ArrayList<Integer>(), as2 = new ArrayList<Integer>();
1007 int pdbpos = s2.getStart() + getSeq2Start() - 2;
1008 int alignpos = s1.getStart() + getSeq1Start() - 2;
1009 int lp2 = pdbpos - 3, lp1 = alignpos - 3;
1010 boolean lastmatch = false;
1011 // and now trace the alignment onto the atom set.
1012 for (int i = 0; i < astr1.length(); i++)
1014 char c1 = astr1.charAt(i), c2 = astr2.charAt(i);
1025 if (allowmismatch || c1 == c2)
1027 // extend mapping interval
1028 if (lp1 + 1 != alignpos || lp2 + 1 != pdbpos)
1030 as1.add(Integer.valueOf(alignpos));
1031 as2.add(Integer.valueOf(pdbpos));
1039 // extend mapping interval
1042 as1.add(Integer.valueOf(lp1));
1043 as2.add(Integer.valueOf(lp2));
1048 // construct range pairs
1050 int[] mapseq1 = new int[as1.size() + (lastmatch ? 1 : 0)], mapseq2 = new int[as2
1051 .size() + (lastmatch ? 1 : 0)];
1053 for (Integer ip : as1)
1059 for (Integer ip : as2)
1066 mapseq1[mapseq1.length - 1] = alignpos;
1067 mapseq2[mapseq2.length - 1] = pdbpos;
1069 MapList map = new MapList(mapseq1, mapseq2, 1, 1);
1071 jalview.datamodel.Mapping mapping = new Mapping(map);
1077 * matches ochains against al and populates seqs with the best match between
1078 * each ochain and the set in al
1082 * @param dnaOrProtein
1083 * @param removeOldAnnots
1084 * when true, old annotation is cleared before new annotation
1086 * @return List<List<SequenceI> originals, List<SequenceI> replacement,
1087 * List<AlignSeq> alignment between each>
1089 public static List<List<? extends Object>> replaceMatchingSeqsWith(
1090 List<SequenceI> seqs, List<AlignmentAnnotation> annotations,
1091 List<SequenceI> ochains,
1092 AlignmentI al, String dnaOrProtein, boolean removeOldAnnots)
1094 List<SequenceI> orig = new ArrayList<SequenceI>(), repl = new ArrayList<SequenceI>();
1095 List<AlignSeq> aligs = new ArrayList<AlignSeq>();
1096 if (al != null && al.getHeight() > 0)
1098 ArrayList<SequenceI> matches = new ArrayList<SequenceI>();
1099 ArrayList<AlignSeq> aligns = new ArrayList<AlignSeq>();
1101 for (SequenceI sq : ochains)
1103 SequenceI bestm = null;
1104 AlignSeq bestaseq = null;
1106 for (SequenceI msq : al.getSequences())
1108 AlignSeq aseq = doGlobalNWAlignment(msq, sq,
1110 if (bestm == null || aseq.getMaxScore() > bestscore)
1112 bestscore = aseq.getMaxScore();
1117 System.out.println("Best Score for " + (matches.size() + 1) + " :"
1120 aligns.add(bestaseq);
1121 al.deleteSequence(bestm);
1123 for (int p = 0, pSize = seqs.size(); p < pSize; p++)
1125 SequenceI sq, sp = seqs.get(p);
1127 if ((q = ochains.indexOf(sp)) > -1)
1129 seqs.set(p, sq = matches.get(q));
1132 sq.setName(sp.getName());
1133 sq.setDescription(sp.getDescription());
1135 sq.transferAnnotation(sp, sp2sq = aligns.get(q).getMappingFromS1(false));
1136 aligs.add(aligns.get(q));
1138 for (int ap = 0; ap < annotations.size();)
1140 if (annotations.get(ap).sequenceRef == sp)
1146 if (removeOldAnnots) {
1147 annotations.remove(ap);
1149 AlignmentAnnotation alan = annotations.remove(ap);
1150 alan.liftOver(sq, sp2sq);
1151 alan.setSequenceRef(sq);
1152 sq.addAlignmentAnnotation(alan);
1160 if (sq.getAnnotation() != null && sq.getAnnotation().length > 0)
1162 annotations.addAll(inspos == -1 ? annotations.size() : inspos,
1163 Arrays.asList(sq.getAnnotation()));
1168 return Arrays.asList(orig, repl, aligs);
1172 * compute the PID vector used by the redundancy filter.
1174 * @param originalSequences
1175 * - sequences in alignment that are to filtered
1177 * - null or strings to be analysed (typically, visible portion of
1178 * each sequence in alignment)
1180 * - first column in window for calculation
1182 * - last column in window for calculation
1184 * - if true then use ungapped sequence to compute PID
1185 * @return vector containing maximum PID for i-th sequence and any sequences
1186 * longer than that seuqence
1188 public static float[] computeRedundancyMatrix(
1189 SequenceI[] originalSequences, String[] omitHidden, int start,
1190 int end, boolean ungapped)
1192 int height = originalSequences.length;
1193 float[] redundancy = new float[height];
1194 int[] lngth = new int[height];
1195 for (int i = 0; i < height; i++)
1201 // long start = System.currentTimeMillis();
1205 for (int i = 0; i < height; i++)
1208 for (int j = 0; j < i; j++)
1215 if (omitHidden == null)
1217 seqi = originalSequences[i].getSequenceAsString(start, end);
1218 seqj = originalSequences[j].getSequenceAsString(start, end);
1222 seqi = omitHidden[i];
1223 seqj = omitHidden[j];
1227 String ug = AlignSeq.extractGaps(Comparison.GapChars, seqi);
1228 lngth[i] = ug.length();
1236 String ug = AlignSeq.extractGaps(Comparison.GapChars, seqj);
1237 lngth[j] = ug.length();
1243 pid = Comparison.PID(seqi, seqj);
1245 // use real sequence length rather than string length
1246 if (lngth[j] < lngth[i])
1248 redundancy[j] = Math.max(pid, redundancy[j]);
1252 redundancy[i] = Math.max(pid, redundancy[i]);