JAL-4184 export description line in stockholm
[jalview.git] / src / jalview / io / StockholmFile.java
index a3f7531..eeadcbf 100644 (file)
@@ -1048,9 +1048,18 @@ public class StockholmFile extends AlignFile
       }
     }
 
-    // output annotations
+    // output description and annotations
+
     while (i < slen && (seq = s[i]) != null)
     {
+      if (seq.getDescription()!=null)
+      {
+        // out.append("#=GR ");
+        out.append(new Format("%-" + maxid + "s").form(
+                "#=GS " + printId(seq, jvSuffix) + " DE " + seq.getDescription()));
+        out.append(newline);
+      }
+
       AlignmentAnnotation[] alAnot = seq.getAnnotation();
       if (alAnot != null)
       {