X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fgo%2FBasicGoRelationship.java;h=490dbc7970e761406806a7c775766dc5de605aa0;hb=26d8d47ed32a0eb9bd43c409d0e26ff13570b246;hp=690c5f120acf9c4dda536b23d13a50c8f49bbbef;hpb=d58d62e4c76599d217d96b808a29f3b762a0a580;p=jalview.git diff --git a/forester/java/src/org/forester/go/BasicGoRelationship.java b/forester/java/src/org/forester/go/BasicGoRelationship.java index 690c5f1..490dbc7 100644 --- a/forester/java/src/org/forester/go/BasicGoRelationship.java +++ b/forester/java/src/org/forester/go/BasicGoRelationship.java @@ -55,6 +55,12 @@ public class BasicGoRelationship implements GoRelationship { else if ( type.toLowerCase().equals( OCCURS_IN_STR ) ) { _type = Type.OCCURS_IN; } + else if ( type.toLowerCase().equals( HAPPENS_DURING_STR ) ) { + _type = Type.HAPPENS_DURING; + } + else if ( type.toLowerCase().equals(ENDS_DURING_STR ) ) { + _type = Type.ENDS_DURING; + } else { throw new IllegalArgumentException( "unknown GO relationship type: " + type ); } @@ -83,8 +89,8 @@ public class BasicGoRelationship implements GoRelationship { /** * Based on value and type. - * - * + * + * */ @Override public boolean equals( final Object o ) { @@ -133,7 +139,7 @@ public class BasicGoRelationship implements GoRelationship { case HAS_PART: sb.append( HAS_PART_STR ); break; - case OCCURS_IN: + case OCCURS_IN: sb.append( OCCURS_IN_STR ); break; default: