X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fapplication%2Fpfam_go.java;h=df679e175607780564c45217825a566f416861d5;hb=2044ab53ae9805f51982d89fd0f62ed7a45abf0c;hp=75f0381234d72c4c58a824e6e9f40a73eea3b57b;hpb=b606686e01ec42a13f9a91103c7e338925497101;p=jalview.git diff --git a/forester/java/src/org/forester/application/pfam_go.java b/forester/java/src/org/forester/application/pfam_go.java index 75f0381..df679e1 100644 --- a/forester/java/src/org/forester/application/pfam_go.java +++ b/forester/java/src/org/forester/application/pfam_go.java @@ -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.application; @@ -78,7 +78,7 @@ public class pfam_go { encountered_domains.add( line ); boolean found = false; for( final PfamToGoMapping mapping : mappings ) { - if ( mapping.getKey().getId().equals( line ) ) { + if ( mapping.getKey().equals( line ) ) { System.out.println( mapping.getValue() ); found = true; } @@ -150,7 +150,7 @@ public class pfam_go { System.out.println( "Usage:" ); System.out.println(); System.out.println( PRG_NAME + " [-" + ALLOW_DUPLICATES_OPTION - + " to allow duplicates] " ); + + " to allow duplicates] " ); System.out.println(); System.out.println(); }