X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fgo%2FGoRelationship.java;h=47ef4e25b737342f66958429dde48e06f84e4e18;hb=a9fcc2db25e1349d2a5f926eae7a71cea99efb7a;hp=2d308ba7593b957ce4137490b8c6b050bdfaaf79;hpb=eee996a6476a1e3d84c07f8f690dcde3ff4b2ef5;p=jalview.git diff --git a/forester/java/src/org/forester/go/GoRelationship.java b/forester/java/src/org/forester/go/GoRelationship.java index 2d308ba..47ef4e2 100644 --- a/forester/java/src/org/forester/go/GoRelationship.java +++ b/forester/java/src/org/forester/go/GoRelationship.java @@ -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; } }