jalview 2.5 release banner
[jalview.git] / src / jalview / analysis / SequenceIdMatcher.java
index 56b760a..ff5621c 100755 (executable)
@@ -1,20 +1,19 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1)
- * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5)
+ * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
  * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
+ * This file is part of Jalview.
  * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
  * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
  */
 package jalview.analysis;
 
@@ -56,11 +55,11 @@ public class SequenceIdMatcher
     {
       names.put(new SeqIdName(seqs[i].getName()), seqs[i]);
       // add in any interesting identifiers
-      if (seqs[i].getDBRef()!=null)
+      if (seqs[i].getDBRef() != null)
       {
         DBRefEntry dbr[] = seqs[i].getDBRef();
-        SeqIdName sid=null;
-        for (int r=0;r<dbr.length;r++)
+        SeqIdName sid = null;
+        for (int r = 0; r < dbr.length; r++)
         {
           sid = new SeqIdName(dbr[r].getAccessionId());
           if (!names.contains(sid))
@@ -77,9 +76,9 @@ public class SequenceIdMatcher
    * matches to the names hash.
    * 
    * @param candName
-   *                SeqIdName
+   *          SeqIdName
    * @param matches
-   *                Vector of SequenceI objects
+   *          Vector of SequenceI objects
    * @return SequenceI closest SequenceI to SeqIdName
    */
   private SequenceI pickbestMatch(SeqIdName candName, Vector matches)
@@ -115,7 +114,7 @@ public class SequenceIdMatcher
    * get SequenceI with closest SequenceI.getName() to seq.getName()
    * 
    * @param seq
-   *                SequenceI
+   *          SequenceI
    * @return SequenceI
    */
   SequenceI findIdMatch(SequenceI seq)
@@ -137,7 +136,7 @@ public class SequenceIdMatcher
    * same Id as a given set of different sequence objects
    * 
    * @param seqs
-   *                SequenceI[]
+   *          SequenceI[]
    * @return SequenceI[]
    */
   SequenceI[] findIdMatch(SequenceI[] seqs)
@@ -171,7 +170,7 @@ public class SequenceIdMatcher
    * core findIdMatch search method
    * 
    * @param nam
-   *                SeqIdName
+   *          SeqIdName
    * @return SequenceI
    */
   private SequenceI findIdMatch(
@@ -238,7 +237,7 @@ public class SequenceIdMatcher
      * todo: (JBPNote) Set separator characters appropriately
      * 
      * @param s
-     *                SeqIdName
+     *          SeqIdName
      * @return boolean
      */
     public boolean equals(SeqIdName s)