in progress
[jalview.git] / forester / java / src / org / forester / surfacing / DirectedBinaryDomainCombination.java
index 4716be8..68e570d 100644 (file)
@@ -35,8 +35,11 @@ public class DirectedBinaryDomainCombination extends BasicBinaryDomainCombinatio
         if ( ( n_terminal == null ) || ( c_terminal == null ) ) {
             throw new IllegalArgumentException( "attempt to create binary domain combination using null" );
         }
-        _id0 = n_terminal;
-        _id1 = c_terminal;
+        //_id0 = n_terminal;
+        //_id1 = c_terminal;
+       // _data = n_terminal + SEPARATOR + c_terminal;
+        _id0 = getId( n_terminal );
+        _id1 = getId( c_terminal );
     }
 
     public static BinaryDomainCombination createInstance( final String ids ) {