Merge branch 'develop' into features/JAL-653_gffalignments
[jalview.git] / src / jalview / io / FormatAdapter.java
index df5353c..d241308 100755 (executable)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -37,10 +37,20 @@ import jalview.datamodel.SequenceI;
  */
 public class FormatAdapter extends AppletFormatAdapter
 {
+  public FormatAdapter(AlignViewportI viewport)
+  {
+    super(viewport);
+    init();
+  }
 
   public FormatAdapter()
   {
     super();
+    init();
+  }
+
+  private void init()
+  {
     if (jalview.bin.Cache.getDefault("STRUCT_FROM_PDB", true))
     {
       annotFromStructure = jalview.bin.Cache.getDefault("ADD_TEMPFACT_ANN",
@@ -58,11 +68,13 @@ public class FormatAdapter extends AppletFormatAdapter
       serviceSecondaryStruct = false;
     }
   }
+
   public String formatSequences(String format, SequenceI[] seqs,
-          String[] omitHiddenColumns)
+          String[] omitHiddenColumns, int[] exportRange)
   {
 
-    return formatSequences(format, replaceStrings(seqs, omitHiddenColumns));
+    return formatSequences(format,
+            replaceStrings(seqs, omitHiddenColumns, exportRange));
   }
 
   /**
@@ -74,15 +86,48 @@ public class FormatAdapter extends AppletFormatAdapter
    * @return new sequences
    */
   public SequenceI[] replaceStrings(SequenceI[] seqs,
-          String[] omitHiddenColumns)
+          String[] omitHiddenColumns, int[] startEnd)
   {
     if (omitHiddenColumns != null)
     {
       SequenceI[] tmp = new SequenceI[seqs.length];
+
+      int startRes;
+      int endRes;
+      int startIndex;
+      int endIndex;
       for (int i = 0; i < seqs.length; i++)
       {
+        startRes = seqs[i].getStart();
+        endRes = seqs[i].getEnd();
+
+        startIndex = startEnd[0];
+        endIndex = startEnd[1];
+
+        if (startEnd != null)
+        {
+          // get first non-gaped residue start position
+          while (jalview.util.Comparison.isGap(seqs[i]
+                  .getCharAt(startIndex)) && startIndex < endIndex)
+          {
+            startIndex++;
+          }
+
+          // get last non-gaped residue end position
+          while (jalview.util.Comparison.isGap(seqs[i].getCharAt(endIndex))
+                  && endIndex > startIndex)
+          {
+            endIndex--;
+          }
+
+          startRes = seqs[i].findPosition(startIndex);
+          startRes = seqs[i].getStart() > 1 ? startRes - seqs[i].getStart()
+                  : startRes;
+          endRes = seqs[i].findPosition(endIndex) - seqs[i].getStart();
+        }
+
         tmp[i] = new Sequence(seqs[i].getName(), omitHiddenColumns[i],
-                seqs[i].getStart(), seqs[i].getEnd());
+                startRes, endRes);
         tmp[i].setDescription(seqs[i].getDescription());
       }
       seqs = tmp;
@@ -188,16 +233,17 @@ public class FormatAdapter extends AppletFormatAdapter
   }
 
   public String formatSequences(String format, AlignmentI alignment,
-          String[] omitHidden, ColumnSelection colSel)
+          String[] omitHidden, int[] exportRange, ColumnSelection colSel)
   {
-    return formatSequences(format, alignment, omitHidden,
+    return formatSequences(format, alignment, omitHidden, exportRange,
             getCacheSuffixDefault(format), colSel, null);
   }
 
   public String formatSequences(String format, AlignmentI alignment,
-          String[] omitHidden, ColumnSelection colSel, SequenceGroup sgp)
+          String[] omitHidden, int[] exportRange, ColumnSelection colSel,
+          SequenceGroup sgp)
   {
-    return formatSequences(format, alignment, omitHidden,
+    return formatSequences(format, alignment, omitHidden, exportRange,
             getCacheSuffixDefault(format), colSel, sgp);
   }
 
@@ -214,14 +260,17 @@ public class FormatAdapter extends AppletFormatAdapter
    * @return string representation of the alignment formatted as format
    */
   public String formatSequences(String format, AlignmentI alignment,
-          String[] omitHidden, boolean suffix, ColumnSelection colSel)
+          String[] omitHidden, int[] exportRange, boolean suffix,
+          ColumnSelection colSel)
   {
-    return formatSequences(format, alignment, omitHidden, suffix, colSel,
+    return formatSequences(format, alignment, omitHidden, exportRange,
+            suffix, colSel,
             null);
   }
 
   public String formatSequences(String format, AlignmentI alignment,
-          String[] omitHidden, boolean suffix, ColumnSelection colSel,
+          String[] omitHidden, int[] exportRange, boolean suffix,
+          ColumnSelection colSel,
           jalview.datamodel.SequenceGroup selgp)
   {
     if (omitHidden != null)
@@ -231,7 +280,7 @@ public class FormatAdapter extends AppletFormatAdapter
       // TODO: JAL-1486 - set start and end for output correctly. basically,
       // AlignmentView.getVisibleContigs does this.
       Alignment alv = new Alignment(replaceStrings(
-              alignment.getSequencesArray(), omitHidden));
+              alignment.getSequencesArray(), omitHidden, exportRange));
       AlignmentAnnotation[] ala = alignment.getAlignmentAnnotation();
       if (ala != null)
       {
@@ -258,35 +307,14 @@ public class FormatAdapter extends AppletFormatAdapter
   public Alignment readFile(String inFile, String type, String format)
           throws java.io.IOException
   {
-    Alignment al;
-    if (format.equals("HTML"))
-    {
-      afile = new HtmlFile(inFile, type);
-      al = new Alignment(afile.getSeqsAsArray());
-      afile.addAnnotations(al);
-    }
-    else
-    {
-      al = super.readFile(inFile, type, format);
-    }
-
+    Alignment al = super.readFile(inFile, type, format);
     return al;
   }
 
   public AlignmentI readFromFile(FileParse source, String format)
           throws java.io.IOException
   {
-    Alignment al;
-    if (format.equals("HTML"))
-    {
-      afile = new HtmlFile(source);
-      al = new Alignment(afile.getSeqsAsArray());
-      afile.addAnnotations(al);
-    }
-    else
-    {
-      al = (Alignment) super.readFromFile(source, format);
-    }
+    Alignment al = (Alignment) super.readFromFile(source, format);
     return al;
   }
 
@@ -323,4 +351,5 @@ public class FormatAdapter extends AppletFormatAdapter
     return formatSequences(format, getCacheSuffixDefault(format), av, selectedOnly);
   }
 
+
 }