X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fgo%2FGoRelationship.java;h=47ef4e25b737342f66958429dde48e06f84e4e18;hb=c6b74aa20ac0c91099597b9474e7da6c0ffdb9a6;hp=d7f5e793180b6896254a7b37528ac90bf4dfc252;hpb=48f7a89be9d34f1930a1f863e608235cc27184c5;p=jalview.git diff --git a/forester/java/src/org/forester/go/GoRelationship.java b/forester/java/src/org/forester/go/GoRelationship.java index d7f5e79..47ef4e2 100644 --- a/forester/java/src/org/forester/go/GoRelationship.java +++ b/forester/java/src/org/forester/go/GoRelationship.java @@ -5,7 +5,7 @@ // Copyright (C) 2008-2009 Christian M. Zmasek // Copyright (C) 2008-2009 Burnham Institute for Medical Research // 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 @@ -15,7 +15,7 @@ // 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 @@ -31,12 +31,13 @@ public interface GoRelationship extends Comparable { public static final String REGULATES_STR = "regulates"; public static final String NEGATIVELY_REGULATES_STR = "negatively_regulates"; public static final String POSITIVELY_REGULATES_STR = "positively_regulates"; + public static final String HAS_PART_STR = "has_part"; public GoId getGoId(); public Type getType(); public static enum Type { - PART_OF, REGULATES, NEGATIVELY_REGULATES, POSITIVELY_REGULATES; + PART_OF, REGULATES, NEGATIVELY_REGULATES, POSITIVELY_REGULATES, HAS_PART; } }