X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fanalysis%2FSequenceIdMatcher.java;h=e3a9b295ba54b2c1943f5d4eea2c05cd193cd66c;hb=57738a1f3c19b1c3a00bd3ac5108f8cd0af32f99;hp=bedce3fd56c3834eaa5a0205a609fb7072cdcf80;hpb=e1cd94839128776e14e51ded3f3be2dcc7e72273;p=jalview.git diff --git a/src/jalview/analysis/SequenceIdMatcher.java b/src/jalview/analysis/SequenceIdMatcher.java index bedce3f..e3a9b29 100755 --- a/src/jalview/analysis/SequenceIdMatcher.java +++ b/src/jalview/analysis/SequenceIdMatcher.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -20,9 +20,16 @@ */ package jalview.analysis; -import java.util.*; +import java.util.Locale; -import jalview.datamodel.*; +import jalview.datamodel.DBRefEntry; +import jalview.datamodel.SequenceI; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Vector; /** * Routines for approximate Sequence Id resolution by name using string @@ -32,52 +39,83 @@ import jalview.datamodel.*; */ public class SequenceIdMatcher { - private Hashtable names; + private HashMap names; + + public SequenceIdMatcher(List seqs) + { + names = new HashMap(); + addAll(seqs); + } - public SequenceIdMatcher(SequenceI[] seqs) + /** + * Adds sequences to this matcher + * + * @param seqs + */ + public void addAll(List seqs) { - names = new Hashtable(); - for (int i = 0; i < seqs.length; i++) + for (SequenceI seq : seqs) { - // TODO: deal with ID collisions - SequenceI should be appended to list - // associated with this key. - names.put(new SeqIdName(seqs[i].getDisplayId(true)), seqs[i]); - SequenceI dbseq = seqs[i]; - while (dbseq.getDatasetSequence()!=null) - { - dbseq = dbseq.getDatasetSequence(); - } - // add in any interesting identifiers - if (dbseq.getDBRef() != null) + add(seq); + } + } + + /** + * Adds one sequence to this matcher + * + * @param seq + */ + public void add(SequenceI seq) + { + // TODO: deal with ID collisions - SequenceI should be appended to list + // associated with this key. + names.put(new SeqIdName(seq.getDisplayId(true)), seq); + SequenceI dbseq = seq; + while (dbseq.getDatasetSequence() != null) + { + dbseq = dbseq.getDatasetSequence(); + } + // add in any interesting identifiers + List dbr = dbseq.getDBRefs(); + if (dbr != null) + { + SeqIdName sid = null; + for (int r = 0, nr = dbr.size(); r < nr; r++) { - DBRefEntry dbr[] = dbseq.getDBRef(); - SeqIdName sid = null; - for (int r = 0; r < dbr.length; r++) + sid = new SeqIdName(dbr.get(r).getAccessionId()); + if (!names.containsKey(sid)) { - sid = new SeqIdName(dbr[r].getAccessionId()); - if (!names.contains(sid)) - { - names.put(sid, seqs[i]); - } + names.put(sid, seq); } } } } /** + * convenience method to make a matcher from concrete array + * + * @param sequences + */ + public SequenceIdMatcher(SequenceI[] sequences) + { + this(Arrays.asList(sequences)); + } + + /** * returns the closest SequenceI in matches to SeqIdName and returns all the * matches to the names hash. * * @param candName * SeqIdName * @param matches - * Vector of SequenceI objects + * List of SequenceI objects * @return SequenceI closest SequenceI to SeqIdName */ - private SequenceI pickbestMatch(SeqIdName candName, Vector matches) + private SequenceI pickbestMatch(SeqIdName candName, + List matches) { - SequenceI[] st = pickbestMatches(candName, matches); - return st == null || st.length == 0 ? null : st[0]; + List st = pickbestMatches(candName, matches); + return st == null || st.size() == 0 ? null : st.get(0); } /** @@ -91,16 +129,15 @@ public class SequenceIdMatcher * @return Object[] { SequenceI closest SequenceI to SeqIdName, SequenceI[] * ties } */ - private SequenceI[] pickbestMatches(SeqIdName candName, Vector matches) + private List pickbestMatches(SeqIdName candName, + List matches) { - ArrayList best = new ArrayList(); - SequenceI match = null; + ArrayList best = new ArrayList(); if (candName == null || matches == null || matches.size() == 0) { return null; } - match = (SequenceI) matches.elementAt(0); - matches.removeElementAt(0); + SequenceI match = matches.remove(0); best.add(match); names.put(new SeqIdName(match.getName()), match); int matchlen = match.getName().length(); @@ -108,14 +145,12 @@ public class SequenceIdMatcher while (matches.size() > 0) { // look through for a better one. - SequenceI cand = (SequenceI) matches.elementAt(0); - matches.remove(0); + SequenceI cand = matches.remove(0); names.put(new SeqIdName(cand.getName()), cand); int q, w, candlen = cand.getName().length(); // keep the one with an id 'closer' to the given seqnam string - if ((q = Math.abs(matchlen - namlen)) > (w = Math.abs(candlen - - namlen)) - && candlen > matchlen) + if ((q = Math.abs(matchlen - namlen)) > (w = Math + .abs(candlen - namlen)) && candlen > matchlen) { best.clear(); match = cand; @@ -133,7 +168,7 @@ public class SequenceIdMatcher return null; } ; - return (SequenceI[]) best.toArray(new SequenceI[0]); + return best; } /** @@ -160,12 +195,18 @@ public class SequenceIdMatcher * * @param seqnam * string to query Matcher with. + * @return a new array or (possibly) null */ public SequenceI[] findAllIdMatches(String seqnam) { SeqIdName nam = new SeqIdName(seqnam); - return findAllIdMatches(nam); + List m = findAllIdMatches(nam); + if (m != null) + { + return m.toArray(new SequenceI[m.size()]); + } + return null; } /** @@ -230,19 +271,19 @@ public class SequenceIdMatcher * SeqIdName * @return SequenceI[] */ - private SequenceI[] findAllIdMatches( + private List findAllIdMatches( jalview.analysis.SequenceIdMatcher.SeqIdName nam) { - Vector matches = new Vector(); + ArrayList matches = new ArrayList(); while (names.containsKey(nam)) { - matches.addElement(names.remove(nam)); + matches.add(names.remove(nam)); } - SequenceI[] r = pickbestMatches(nam, matches); + List r = pickbestMatches(nam, matches); return r; } - private class SeqIdName + class SeqIdName { String id; @@ -250,7 +291,7 @@ public class SequenceIdMatcher { if (s != null) { - id = new String(s); + id = s.toLowerCase(Locale.ROOT); } else { @@ -258,23 +299,29 @@ public class SequenceIdMatcher } } + @Override public int hashCode() { - return ((id.length() >= 4) ? id.substring(0, 4).hashCode() : id - .hashCode()); + return ((id.length() >= 4) ? id.substring(0, 4).hashCode() + : id.hashCode()); } + @Override public boolean equals(Object s) { + if (s == null) + { + return false; + } if (s instanceof SeqIdName) { - return this.equals((SeqIdName) s); + return this.stringequals(((SeqIdName) s).id); } else { if (s instanceof String) { - return this.equals((String) s); + return this.stringequals(((String) s).toLowerCase(Locale.ROOT)); } } @@ -296,37 +343,33 @@ public class SequenceIdMatcher * todo: (JBPNote) Set separator characters appropriately * * @param s - * SeqIdName * @return boolean */ - public boolean equals(SeqIdName s) + private boolean stringequals(String s) { - // TODO: JAL-732 patch for cases when name includes a list of IDs, and the - // match contains one ID flanked - if (id.length() > s.id.length()) + if (id.length() > s.length()) { - return id.startsWith(s.id) ? (WORD_SEP.indexOf(id.charAt(s.id - .length())) > -1) : false; + return id.startsWith(s) + ? (WORD_SEP.indexOf(id.charAt(s.length())) > -1) + : false; } else { - return s.id.startsWith(id) ? (s.id.equals(id) ? true : (WORD_SEP - .indexOf(s.id.charAt(id.length())) > -1)) : false; + return s.startsWith(id) + ? (s.equals(id) ? true + : (WORD_SEP.indexOf(s.charAt(id.length())) > -1)) + : false; } } - public boolean equals(String s) + /** + * toString method returns the wrapped sequence id. For debugging purposes + * only, behaviour not guaranteed not to change. + */ + @Override + public String toString() { - if (id.length() > s.length()) - { - return id.startsWith(s) ? (WORD_SEP.indexOf(id.charAt(s.length())) > -1) - : false; - } - else - { - return s.startsWith(id) ? (s.equals(id) ? true : (WORD_SEP - .indexOf(s.charAt(id.length())) > -1)) : false; - } + return id; } } }