JAL-1641 added support for exporting sequence features and non auto-generated annotations
[jalview.git] / src / jalview / io / AppletFormatAdapter.java
index 89adead..98e366b 100755 (executable)
@@ -47,7 +47,7 @@ public class AppletFormatAdapter
    */
   public static final String[] READABLE_FORMATS = new String[]
           { "BLC", "CLUSTAL", "FASTA", "MSF", "PileUp", "PIR", "PFAM", "STH",
-      "PDB", "JnetFile", "RNAML", PhylipFile.FILE_DESC, "HTML" }; // ,
+      "PDB", "JnetFile", "RNAML", PhylipFile.FILE_DESC, JSONFile.FILE_DESC, "HTML" }; // ,
                                                                               // "SimpleBLAST"
                                                                               // };
 
@@ -57,7 +57,7 @@ public class AppletFormatAdapter
    */
   public static final String[] WRITEABLE_FORMATS = new String[]
           { "BLC", "CLUSTAL", "FASTA", "MSF", "PileUp", "PIR", "PFAM", "AMSA",
-    "STH", PhylipFile.FILE_DESC };
+    "STH", PhylipFile.FILE_DESC, JSONFile.FILE_DESC };
 
   /**
    * List of extensions corresponding to file format types in WRITABLE_FNAMES
@@ -65,7 +65,7 @@ public class AppletFormatAdapter
    */
   public static final String[] WRITABLE_EXTENSIONS = new String[]
   { "fa, fasta, mfa, fastq", "aln", "pfam", "msf", "pir", "blc", "amsa",
-      "sto,stk", PhylipFile.FILE_EXT, "jvp" };
+      "sto,stk", PhylipFile.FILE_EXT, JSONFile.FILE_DESC, "jvp" };
 
   /**
    * List of writable formats by the application. Order must correspond with the
@@ -73,7 +73,7 @@ public class AppletFormatAdapter
    */
   public static final String[] WRITABLE_FNAMES = new String[]
   { "Fasta", "Clustal", "PFAM", "MSF", "PIR", "BLC", "AMSA", "STH",
-      PhylipFile.FILE_DESC, "Jalview" };
+      PhylipFile.FILE_DESC, JSONFile.FILE_DESC, "Jalview" };
 
   /**
    * List of readable format file extensions by application in order
@@ -81,7 +81,7 @@ public class AppletFormatAdapter
    */
   public static final String[] READABLE_EXTENSIONS = new String[]
           { "fa, fasta, mfa, fastq", "aln", "pfam", "msf", "pir", "blc", "amsa",
-      "jar,jvp", "sto,stk", "xml,rnaml", PhylipFile.FILE_EXT,
+      "jar,jvp", "sto,stk", "xml,rnaml", PhylipFile.FILE_EXT, JSONFile.FILE_EXT,
  "html" }; // ".blast"
 
   /**
@@ -90,7 +90,8 @@ public class AppletFormatAdapter
    */
   public static final String[] READABLE_FNAMES = new String[]
           { "Fasta", "Clustal", "PFAM", "MSF", "PIR", "BLC", "AMSA", "Jalview",
-      "Stockholm", "RNAML", PhylipFile.FILE_DESC, "HTML" };// ,
+      "Stockholm", "RNAML", PhylipFile.FILE_DESC, JSONFile.FILE_DESC,
+      "HTML" };// ,
 
   // "SimpleBLAST"
   // };
@@ -271,10 +272,10 @@ public class AppletFormatAdapter
       {
         afile = new PhylipFile(inFile, type);
       }
-      // else if (format.equals(HtmlFile.FILE_DESC))
-      // {
-      // afile = new HtmlFile(inFile, type);
-      // }
+       else if (format.equals(JSONFile.FILE_DESC))
+       {
+       afile = new JSONFile(inFile, type);
+       }
       else if (format.equals("RNAML"))
       {
         afile = new RnamlFile(inFile, type);
@@ -399,10 +400,10 @@ public class AppletFormatAdapter
       {
         afile = new PhylipFile(source);
       }
-      // else if (format.equals(HtmlFile.FILE_DESC))
-      // {
-      // afile = new HtmlFile(source);
-      // }
+       else if (format.equals(JSONFile.FILE_DESC))
+       {
+       afile = new JSONFile(source);
+       }
       Alignment al = new Alignment(afile.getSeqsAsArray());
 
       afile.addAnnotations(al);
@@ -497,7 +498,6 @@ public class AppletFormatAdapter
     try
     {
       AlignFile afile = null;
-
       if (format.equalsIgnoreCase("FASTA"))
       {
         afile = new FastaFile();
@@ -538,10 +538,10 @@ public class AppletFormatAdapter
       {
         afile = new PhylipFile();
       }
-      // else if (format.equalsIgnoreCase(HtmlFile.FILE_DESC))
-      // {
-      // afile = new HtmlFile();
-      // }
+       else if (format.equalsIgnoreCase(JSONFile.FILE_DESC))
+       {
+       afile = new JSONFile();
+       }
       else if (format.equalsIgnoreCase("RNAML"))
       {
         afile = new RnamlFile();
@@ -556,6 +556,16 @@ public class AppletFormatAdapter
 
       afile.setSeqs(alignment.getSequencesArray());
 
+      // Add non auto calculated annotation to AlignFile
+      for (AlignmentAnnotation annot : alignment.getAlignmentAnnotation())
+      {
+        if (!annot.autoCalculated)
+        {
+          afile.annotations.add(annot);
+        }
+
+      }
+
       String afileresp = afile.print();
       if (afile.hasWarningMessage())
       {