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 private static final char GAP_SPACE = ' ';
39 private static final char GAP_DOT = '.';
41 private 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
139 public final static float PID(String seq1, String seq2)
141 return PID(seq1, seq2, 0, seq1.length());
144 static final int caseShift = 'a' - 'A';
146 // Another pid with region specification
147 public final static float PID(String seq1, String seq2, int start, int end)
149 return PID(seq1, seq2, start, end, true, false);
153 * Calculate percent identity for a pair of sequences over a particular range,
154 * with different options for ignoring gaps.
163 * - if true - gaps match any character, if false, do not match
165 * @param ungappedOnly
166 * - if true - only count PID over ungapped columns
169 public final static float PID(String seq1, String seq2, int start,
170 int end, boolean wcGaps, boolean ungappedOnly)
172 int s1len = seq1.length();
173 int s2len = seq2.length();
175 int len = Math.min(s1len, s2len);
184 start = len - 1; // we just use a single residue for the difference
187 int elen = len - start, bad = 0;
191 for (int i = start; i < len; i++)
193 chr1 = seq1.charAt(i);
195 chr2 = seq2.charAt(i);
196 agap = isGap(chr1) || isGap(chr2);
197 if ('a' <= chr1 && chr1 <= 'z')
200 // Faster than toUpperCase
203 if ('a' <= chr2 && chr2 <= 'z')
206 // Faster than toUpperCase
234 return ((float) 100 * (elen - bad)) / elen;
238 * Answers true if the supplied character is a recognised gap character, else
239 * false. Currently hard-coded to recognise '-', '-' or ' ' (hyphen / dot /
246 public static final boolean isGap(char c)
248 return (c == GAP_DASH || c == GAP_DOT || c == GAP_SPACE) ? true : false;
252 * Overloaded method signature to test whether a single sequence is nucleotide
253 * (that is, more than 85% CGTA)
258 public static final boolean isNucleotide(SequenceI seq)
260 return isNucleotide(new SequenceI[] { seq });
264 * Answers true if more than 85% of the sequence residues (ignoring gaps) are
265 * A, G, C, T or U, else false. This is just a heuristic guess and may give a
266 * wrong answer (as AGCT are also amino acid codes).
271 public static final boolean isNucleotide(SequenceI[] seqs)
277 char[][] letters = new char[seqs.length][];
278 for (int i = 0; i < seqs.length; i++)
282 char[] sequence = seqs[i].getSequence();
283 if (sequence != null)
285 letters[i] = sequence;
290 return areNucleotide(letters);
294 * Answers true if more than 85% of the sequence residues (ignoring gaps) are
295 * A, G, C, T or U, else false. This is just a heuristic guess and may give a
296 * wrong answer (as AGCT are also amino acid codes).
301 static final boolean areNucleotide(char[][] letters)
305 for (char[] seq : letters)
311 // TODO could possibly make an informed guess just from the first sequence
312 // to save a lengthy calculation
327 * Check for nucleotide count > 85% of total count (in a form that evades
328 * int / float conversion or divide by zero).
330 if (ntCount * 100 > EIGHTY_FIVE * (ntCount + aaCount))
342 * Answers true if the character is one of aAcCgGtTuU
347 public static boolean isNucleotide(char c)
349 if ('a' <= c && c <= 'z')
367 * Answers true if every character in the string is one of aAcCgGtTuU, or
368 * (optionally) a gap character (dot, dash, space), else false
374 public static boolean isNucleotideSequence(String s, boolean allowGaps)
380 for (int i = 0; i < s.length(); i++)
382 char c = s.charAt(i);
383 if (!isNucleotide(c))
385 if (!allowGaps || !isGap(c))
395 * Convenience overload of isNucleotide
400 public static boolean isNucleotide(SequenceI[][] seqs)
406 List<SequenceI> flattened = new ArrayList<SequenceI>();
407 for (SequenceI[] ss : seqs)
409 for (SequenceI s : ss)
414 final SequenceI[] oneDArray = flattened.toArray(new SequenceI[flattened
416 return isNucleotide(oneDArray);
420 * Compares two residues either case sensitively or case insensitively
421 * depending on the caseSensitive flag
426 * second char to compare with
427 * @param caseSensitive
428 * if true comparison will be case sensitive otherwise its not
431 public static boolean isSameResidue(char c1, char c2,
432 boolean caseSensitive)
440 return Character.toUpperCase(c1) == Character.toUpperCase(c2);