X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fapplication%2Fpfamacc2go.java;h=9f69cddea462f5e05e8c169a5abbee89227f5583;hb=b528989f688291ba7615867e5322090ec42096d8;hp=1d6ab2faf1899f708e0720c7134c092adc3e3a1d;hpb=493e40b0c936b65da342134da37e8b856b9b80af;p=jalview.git diff --git a/forester/java/src/org/forester/application/pfamacc2go.java b/forester/java/src/org/forester/application/pfamacc2go.java index 1d6ab2f..9f69cdd 100644 --- a/forester/java/src/org/forester/application/pfamacc2go.java +++ b/forester/java/src/org/forester/application/pfamacc2go.java @@ -6,7 +6,7 @@ // Copyright (C) 2010 Christian M Zmasek // Copyright (C) 2010 Sanford-Burnham Medical Research Institute // All rights reserved -// +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either @@ -16,13 +16,13 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. -// +// // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // 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; @@ -82,7 +82,7 @@ public class pfamacc2go { total_pfam_ids++; boolean mapped = false; for( final PfamToGoMapping pfam_to_go_mapping : pfam2go ) { - if ( pfam_to_go_mapping.getKey().getId().equals( pfam_id ) ) { + if ( pfam_to_go_mapping.getKey().equals( pfam_id ) ) { mapped = true; System.out.println( pfam_to_go_mapping.getValue().toString() ); } @@ -105,7 +105,7 @@ public class pfamacc2go { private static void printHelp() { System.out.println(); System.out.println( PRG_NAME - + " " ); + + " " ); System.out.println(); } }