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.datamodel.SequenceI;
25 import java.util.ArrayList;
26 import java.util.List;
29 * Assorted methods for analysing or comparing sequences.
31 public class Comparison
33 private static final int EIGHTY_FIVE = 85;
35 private static final int TO_UPPER_CASE = 'a' - 'A';
37 public static final char GAP_SPACE = ' ';
39 public static final char GAP_DOT = '.';
41 public static final char GAP_DASH = '-';
43 public static final String GapChars = new String(new char[] { GAP_SPACE,
54 * @return DOCUMENT ME!
56 public static final float compare(SequenceI ii, SequenceI jj)
58 return Comparison.compare(ii, jj, 0, ii.getLength() - 1);
62 * this was supposed to be an ungapped pid calculation
74 public static float compare(SequenceI ii, SequenceI jj, int start, int end)
76 String si = ii.getSequenceAsString();
77 String sj = jj.getSequenceAsString();
79 int ilen = si.length() - 1;
80 int jlen = sj.length() - 1;
82 while (Comparison.isGap(si.charAt(start + ilen)))
87 while (Comparison.isGap(sj.charAt(start + jlen)))
98 for (int j = 0; j < jlen; j++)
100 if (si.substring(start + j, start + j + 1).equals(
101 sj.substring(start + j, start + j + 1)))
109 pid = (float) match / (float) ilen * 100;
113 for (int j = 0; j < jlen; j++)
115 if (si.substring(start + j, start + j + 1).equals(
116 sj.substring(start + j, start + j + 1)))
124 pid = (float) match / (float) jlen * 100;
131 * this is a gapped PID calculation
138 * @deprecated use PIDModel.computePID()
141 public final static float PID(String seq1, String seq2)
143 return PID(seq1, seq2, 0, seq1.length());
146 static final int caseShift = 'a' - 'A';
148 // Another pid with region specification
150 * @deprecated use PIDModel.computePID()
153 public final static float PID(String seq1, String seq2, int start, int end)
155 return PID(seq1, seq2, start, end, true, false);
159 * Calculate percent identity for a pair of sequences over a particular range,
160 * with different options for ignoring gaps.
169 * - if true - gaps match any character, if false, do not match
171 * @param ungappedOnly
172 * - if true - only count PID over ungapped columns
174 * @deprecated use PIDModel.computePID()
177 public final static float PID(String seq1, String seq2, int start,
178 int end, boolean wcGaps, boolean ungappedOnly)
180 int s1len = seq1.length();
181 int s2len = seq2.length();
183 int len = Math.min(s1len, s2len);
192 start = len - 1; // we just use a single residue for the difference
195 int elen = len - start, bad = 0;
199 for (int i = start; i < len; i++)
201 chr1 = seq1.charAt(i);
203 chr2 = seq2.charAt(i);
204 agap = isGap(chr1) || isGap(chr2);
205 if ('a' <= chr1 && chr1 <= 'z')
208 // Faster than toUpperCase
211 if ('a' <= chr2 && chr2 <= 'z')
214 // Faster than toUpperCase
242 return ((float) 100 * (elen - bad)) / elen;
246 * Answers true if the supplied character is a recognised gap character, else
247 * false. Currently hard-coded to recognise '-', '-' or ' ' (hyphen / dot /
254 public static final boolean isGap(char c)
256 return (c == GAP_DASH || c == GAP_DOT || c == GAP_SPACE) ? true : false;
260 * Overloaded method signature to test whether a single sequence is nucleotide
261 * (that is, more than 85% CGTA)
266 public static final boolean isNucleotide(SequenceI seq)
268 return isNucleotide(new SequenceI[] { seq });
272 * Answers true if more than 85% of the sequence residues (ignoring gaps) are
273 * A, G, C, T or U, else false. This is just a heuristic guess and may give a
274 * wrong answer (as AGCT are also amino acid codes).
279 public static final boolean isNucleotide(SequenceI[] seqs)
285 char[][] letters = new char[seqs.length][];
286 for (int i = 0; i < seqs.length; i++)
290 char[] sequence = seqs[i].getSequence();
291 if (sequence != null)
293 letters[i] = sequence;
298 return areNucleotide(letters);
302 * Answers true if more than 85% of the sequence residues (ignoring gaps) are
303 * A, G, C, T or U, else false. This is just a heuristic guess and may give a
304 * wrong answer (as AGCT are also amino acid codes).
309 static final boolean areNucleotide(char[][] letters)
313 for (char[] seq : letters)
319 // TODO could possibly make an informed guess just from the first sequence
320 // to save a lengthy calculation
335 * Check for nucleotide count > 85% of total count (in a form that evades
336 * int / float conversion or divide by zero).
338 if (ntCount * 100 > EIGHTY_FIVE * (ntCount + aaCount))
350 * Answers true if the character is one of aAcCgGtTuU
355 public static boolean isNucleotide(char c)
357 if ('a' <= c && c <= 'z')
375 * Answers true if every character in the string is one of aAcCgGtTuU, or
376 * (optionally) a gap character (dot, dash, space), else false
382 public static boolean isNucleotideSequence(String s, boolean allowGaps)
388 for (int i = 0; i < s.length(); i++)
390 char c = s.charAt(i);
391 if (!isNucleotide(c))
393 if (!allowGaps || !isGap(c))
403 * Convenience overload of isNucleotide
408 public static boolean isNucleotide(SequenceI[][] seqs)
414 List<SequenceI> flattened = new ArrayList<SequenceI>();
415 for (SequenceI[] ss : seqs)
417 for (SequenceI s : ss)
422 final SequenceI[] oneDArray = flattened.toArray(new SequenceI[flattened
424 return isNucleotide(oneDArray);
428 * Compares two residues either case sensitively or case insensitively
429 * depending on the caseSensitive flag
434 * second char to compare with
435 * @param caseSensitive
436 * if true comparison will be case sensitive otherwise its not
439 public static boolean isSameResidue(char c1, char c2,
440 boolean caseSensitive)
448 return Character.toUpperCase(c1) == Character.toUpperCase(c2);