JAL-2844 partitioning code made slightly clearer
[jalview.git] / forester / java / src / org / forester / go / BasicGoSubset.java
index de2f65f..8dd8f64 100644 (file)
@@ -21,7 +21,7 @@
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 //
 // Contact: phylosoft @ gmail . com
-// WWW: www.phylosoft.org/forester
+// WWW: https://sites.google.com/site/cmzmasek/home/software/forester
 
 package org.forester.go;
 
@@ -46,6 +46,9 @@ public class BasicGoSubset implements GoSubset {
         else if ( my_s.equals( GOSLIM_CANDIDA_STR ) ) {
             _type = Type.GOSLIM_CANDIDA;
         }
+        else if ( my_s.equals( GOSLIM_ASPERGILLUS_STR ) ) {
+            _type = Type.GOSLIM_ASPERGILLUS;
+        }
         else if ( my_s.equals( GOSLIM_PLANT_STR ) ) {
             _type = Type.GOSLIM_PLANT;
         }
@@ -56,7 +59,7 @@ public class BasicGoSubset implements GoSubset {
             _type = Type.GOSLIM_POMBE;
         }
         else {
-            throw new IllegalArgumentException( "unknown GO subset type: " + my_s );
+            _type = Type.OTHER;
         }
     }
 
@@ -79,7 +82,7 @@ public class BasicGoSubset implements GoSubset {
         }
         else if ( o.getClass() != this.getClass() ) {
             throw new IllegalArgumentException( "attempt to check go subset equality to " + o + " [" + o.getClass()
-                    + "]" );
+                                                + "]" );
         }
         else {
             return ( getType() == ( ( GoSubset ) o ).getType() );
@@ -110,6 +113,9 @@ public class BasicGoSubset implements GoSubset {
             case GOSLIM_PLANT:
                 sb.append( GOSLIM_PLANT_STR );
                 break;
+            case GOSLIM_ASPERGILLUS:
+                sb.append( GOSLIM_ASPERGILLUS_STR );
+                break;
             case GOSLIM_YEAST:
                 sb.append( GOSLIM_YEAST_STR );
                 break;
@@ -119,8 +125,9 @@ public class BasicGoSubset implements GoSubset {
             case GOSLIM_POMBE:
                 sb.append( GOSLIM_POMBE_STR );
                 break;
-            default:
-                new AssertionError( "unknown type: " + getType() );
+            case OTHER:
+                sb.append( "other" );
+                break;
         }
         return sb.toString();
     }