JAL-1641 added type to BioJSON sequence object and modified seqsHash to sequenceRefs...
[jalview.git] / src / jalview / json / binding / v1 / SequencePojo.java
index d96da2a..af57164 100644 (file)
@@ -10,6 +10,8 @@ public class SequencePojo
 
   private String name;
 
+  private String type;
+
   private String id;
 
   private int order;
@@ -95,4 +97,14 @@ public class SequencePojo
     return svid;
   }
 
+  public String getType()
+  {
+    return type;
+  }
+
+  public void setType(String type)
+  {
+    this.type = type;
+  }
+
 }